A2302: Macro name is missing

[ERROR]

Description

A label name is missing on the front of a MACRO directive.

Example
  MyData:    SECTION

  Data1:     DS.B 1

             MACRO

             DC.B \1

             ENDM

  MyCode:    SECTION

  Entry:
  
Tips

Insert a label in front of the MACRO directive.

Example
  MyData:    SECTION

  Data1:     DS.B 1

  allocChar: MACRO

             DC.B \1

             ENDM

  MyCode:    SECTION

  Entry: