A2328: Value is truncated

[DISABLE, INFORMATION, WARNING, ERROR]

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
  
Tips

Reduce the value from the constant to a value fitting in the size specified in the DC directive.

Example
  DataSec: SECTION

  cst1:    DC.B  $56, $7, $84, $FF

  cst2:    DC.W  $56, $784, $FF, $5634