Assembler Messages
Message Codes
MCUez HC12 Assembler User’s Manual
MOTOROLA Assembler Messages 255
12.3.10 A1201:Label <labelName> Referenced in Directive ABSENTRY
is not Defined in Code Segment
Type: Error
Description: The label specified in the directive ABSENTRY is an EQU
label or is located in a data section. The label specified in
ABSENTRY must be a valid label defined in a code section.
Only labels defined in a code segment are allowed in the
ABSENTRY directive.
Example:
ABSENTRY const
const EQU $67
Tip: Specify a label defined in a code section or remove the directive
ABSENTRY.
Example:
ABSENTRY entry
ORG $300
entry NOP
NOP
NOP