[ERROR]
A macro definition is detected inside of another macro definition. The macro assembler does not support this.
allocChar: MACRO
allocWord: MACRO
DC.W \1
ENDM
DC.B \1
ENDM
Define the second macro outside from the first one.
allocChar: MACRO
DC.B \1
ENDM
allocWord: MACRO
DC.W \1
ENDM