[ERROR]
A label name is missing on the front of a MACRO directive.
MyData: SECTION
Data1: DS.B 1
MACRO
DC.B \1
ENDM
MyCode: SECTION
Entry:
Insert a label in front of the MACRO directive.
MyData: SECTION
Data1: DS.B 1
allocChar: MACRO
DC.B \1
ENDM
MyCode: SECTION
Entry: