| |||||
Technical Support Support Resources
Product Information | A166: COMMENTS IN MACROSQUESTIONI need to comment out some definitions in my A166 Macros. However, the semicolon (;) does not seem to do that. For example, the following code... %DEFINE (ADDRESS2) (040000H) ;;;;;;;; %DEFINE (ADDRESS2) (001000H) defines ADDRESS2 to be 001000h instead of 040000h. What am I doing wrong? ANSWERYou cannot comment out Macros with a simple semicolon (;). You must use the Macro Comment Function (%'): %DEFINE (ADDRESS2) (040000H) %' %DEFINE (ADDRESS2) (001000H) MORE INFORMATION
Last Reviewed: Friday, July 15, 2005 | ||||
| |||||