A1415: Cutting fixup overflow

[DISABLED, INFORMATION, WARNING, ERROR]

Description

A constant value does not fit into a field and is therefore truncated.

Example
         DC.B Label+1

  Label: EQU $ff

         DC.B Label+1

  
Tips

Use a larger field, if necessary.

         DC.W Label+1

  Label: EQU $ff

         DC.W Label+1