A13106: Illegal size specification

[ERROR]

Description

A size operator follows an instruction. Size operators are coded as semicolon character followed by single character.

Example
  MyData: SECTION

  data:   DS.B 1

  MyCode: SECTION

  entry:

          ADC.B data

          ADC.L data

          ADC.W data

          ADC.b data

          ADC.l data

          ADC.w data
  
Tips

Remove the size specification following the instruction.

Example
  MyData: SECTION

  data:   DS.B 1

  MyCode: SECTION

  entry:

          ADC data