A1602: Invalid character at end of label (<LabelName>): semicolon or space expected

[ERROR]

Description

The specified label is terminated by an invalid character. The following characters are allowed in a label:

<LabelName> is the name of the wrong label detected (including the invalid character).

Example
  Data1#    DS.B 1

  Data2#6   DS.B 1
  
Tips

Remove the invalid character or replace it by a '_'.

Example
  Data1     DS.B 1

  Data2_6   DS.B 1