Crossware

Table of Contents        Previous topic       Next topic       

PROGRAM MAINTENANCE UTILITY->MACROS->Using Macros

A macro is used by placing its name in brackets preceded by the $ sign as follows:

$(macroname)

For example it a macro is defined as follows:

FILE = code.asm

then the following line:

 cl $(FILE)

expands to:

 cl code.asm