User’s Manual MCUez HC12 Assembler
254 Assembler Messages MOTOROLA
Assembler Messages
12.3.9 A1104: Undeclared User-Defined Symbol <symbolName>
Type: Error
Description: The label <symbolName> is referenced in the assembly file,
but it is never defined.
Example:
Entry:
LDX #56
STX #Variable
RTS
Tip: The label <symbolName> must be defined in the current
assembly file or specified as an external label.
Example:
XREF Variable
Entry:
LDX #56
STX #Variable
RTS