A2310: Size specification expected

[ERROR]

Description

An invalid size specification character is detected in a DCB, DC, DS, FCC, FCB, FDB, FQB, RMB, XDEF or XREF directive. For XDEF and XREF directives, valid size specification characters are:

For DCB, DC, DS, FCC, FCB, FDB, FQB and RMB directives, valid size specification characters are:

Example
  DataSec: SECTION

  label1: DS.Q 2

  ConstSec: SECTION

  label2: DC.I 3, 4, 66
  
Tips

Change the size specification character to a valid one.

Example
  DataSec: SECTION

  label1: DS.W 2

  ConstSec: SECTION

  label2: DC.W 3, 4, 66