[ERROR]
A ENDM directive is detected outside of a macro.
MyData: SECTION
Data1: DS.B 1
allocChar: MACRO
DC.B \1
ENDM
MyCode: SECTION
Entry:
ENDM
Remove the superfluous ENDM directive.
MyData: SECTION
Data1: DS.B 1
allocChar: MACRO
DC.B \1
ENDM
MyCode: SECTION
Entry: