[DISABLE, INFORMATION, WARNING , ERROR]
The input file contains the definition of two macros, which have the same name.
alloc: MACRO
DC.B \1
ENDM
alloc: MACRO
DC.W \1
ENDM
Change the name of one of the macros to generate unique identifiers.
allocChar: MACRO
DC.B \1
ENDM
allocWord: MACRO
DC.W \1
ENDM