ENDM
None
The ENDM directive terminates the macro definition.
The ENDM statement in the following listing terminates the cpChar macro.
cpChar: MACRO LDA \1 STA \2 ENDM CodeSec: SECTION Start: cpChar char1, char2 LDA char1 STA char2