[DISABLE, INFORMATION, WARNING, ERROR]
The size of one of the constants listed in a DC directive is bigger than the size specified in the DC directive.
DataSec: SECTION cst1: DC.B $56, $784, $FF cst2: DC.W $56, $784, $FF5634
Reduce the value from the constant to a value fitting in the size specified in the DC directive.
DataSec: SECTION cst1: DC.B $56, $7, $84, $FF cst2: DC.W $56, $784, $FF, $5634