30 a2323: label is ignored, A2323: label is ignored – Motorola HC12 User Manual
Page 271

Assembler Messages
Message Codes
MCUez HC12 Assembler
User’s Manual
MOTOROLA
Assembler Messages
271
12.3.30 A2323: Label is Ignored
Type:
Warning
Description:
A label is specified in front of a directive that does not accept a
label. The macro assembler ignores such labels. These labels
cannot be referenced anywhere in the application.
Labels will be ignored in front of these directives:
ELSE, ENDIF, END, ENDM, INCLUDE, CLIST, ALIST,
FAIL, LIST, MEXIT, NOLIST, NOL, OFFSET, ORG,
NOPAGE, PAGE, LLEN, PLEN, SPC, TABS, TITLE, TTL.
Example:
CodeSec: SECTION
LDD #$5444
label: PLEN 50
…
label2: LIST
…
Tip:
Remove the label that is not required. If a label is needed at that
position in a section, define the label on a separate line.
Example:
CodeSec: SECTION
LDD #$5444
label:
PLEN 50
…
label2:
LIST
…