A2303: ENDM is illegal

[ERROR]

Description

A ENDM directive is detected outside of a macro.

Example
  MyData:    SECTION

  Data1:     DS.B 1

  allocChar: MACRO

             DC.B \1

             ENDM

  MyCode:    SECTION

  Entry:

             ENDM
  
Tips

Remove the superfluous ENDM directive.

Example
  MyData:    SECTION

  Data1:     DS.B 1

  allocChar: MACRO

             DC.B \1

             ENDM

  MyCode:    SECTION

  Entry: