A
macro definition is one or more assembly statements that define:
- the name of a macro
- the format of the macro call
- the assembly statements of the macro
To define a macro, use either the
,macro or the
#define directive.
Note:
If you use a local label in a macro, the scope of the label is limited to the expansion of the macro. (Local labels begin with the @ character.)