A2307: Macro redefinition

[DISABLE, INFORMATION, WARNING , ERROR]

Description

The input file contains the definition of two macros, which have the same name.

Example
  alloc: MACRO

         DC.B \1

         ENDM

  alloc: MACRO

         DC.W \1

         ENDM
  
Tips

Change the name of one of the macros to generate unique identifiers.

Example
  allocChar: MACRO

             DC.B \1

             ENDM

  allocWord: MACRO

             DC.W \1

             ENDM