Motorola HC12 User Manual

Page of 328
Assembler Messages
Message Codes
MCUez HC12 Assembler
User’s Manual
MOTOROLA
Assembler Messages
275
12.3.34  A2327: ON or OFF Expected
Type:
Error
Description:
The syntax for an MLIST or CLIST directive is not correct.
These directives expect a unique operand, which take the value
ON or OFF.
Example:
CodeSec: SECTION
         …
         CLIST
         …
Tip:
Specify either ON or OFF after the MLIST or CLIST directive.
Example:
CodeSec: SECTION
         …
         CLIST ON
         …
12.3.35  A2328: Value is Truncated
Type:
Warning
Description:
The size of one of the constants listed in a DC directive is
bigger than the size specified in the DC directive.
Example:
DataSec: SECTION
cst1:    DC.B  $56, $784, $FF
cst2:    DC.w  $56, $784, $FF5634
Tip:
Reduce the value of the constant to the size specified in the DC
directive.
Example:
DataSec: SECTION
cst1:    DC.B  $56, $7, $84, $FF
cst2:    DC.W  $56, $784, $FF, $5634