User’s Manual MCUez HC12 Assembler
270 Assembler Messages MOTOROLA
Assembler Messages
12.3.29 A2321: Value too Big
Type: Error
Description: The absolute expression specified in a directive is too big.
This message can be generated in the following cases:
The expression specified in an ALIGN directive is bigger
than 32,767.
The expression specified in a DS or DCB directive is bigger
than 4096.
• The expression specified in a PLEN directive is bigger than
10,000.
• The expression specified in a LLEN directive is bigger than
132.
The expression specified in a SPC directive is bigger than
65.
• The expression specified in a TABS directive is bigger than
128.
Example:
PLEN 50000
LLEN 200
dataSec: SECTION
ALIGN 40000
label1: DS.W 5000
Tip: Modify the absolute expression to a value in the rangespecified
in the bulleted list here.
Example: PLEN 50
LLEN 40
dataSec: SECTION
ALIGN 8
label1: DS.W 1