User’s Manual MCUez HC12 Assembler
274 Assembler Messages MOTOROLA
Assembler Messages
12.3.33 A2326: Label is Redefined
Type: Error
Description: A label redefinition has been detected. This message is issued
when:
• The label specified in front of a DC, DS, DCB, or FCC
directive is already defined.
• One of the label names listed in an XREF directive is
already defined.
• The label specified in front of an EQU directive is already
defined.
• The label specified in front of a SET directive is already
defined and is not associated with another SET directive.
• A label with the same name as an external referenced
symbol is defined in the source file.
Example:
DataSec: SECTION
label1: DS.W 4
…
BSCT
label1: DS.W 1
Tip: Modify the source code to use unique identifiers.
Example:
DataSec: SECTION
data_label1: DS.W 4
…
BSCT
bsct_label1: DS.W 1