A2304: Macro definition within definition

[ERROR]

Description

A macro definition is detected inside of another macro definition. The macro assembler does not support this.

Example
  allocChar: MACRO

  allocWord: MACRO

                DC.W \1

              ENDM

                DC.B \1

              ENDM
  
Tips

Define the second macro outside from the first one.

Example
  allocChar: MACRO

               DC.B \1

             ENDM

  allocWord: MACRO

               DC.W \1

             ENDM