[ERROR]
A size operator follows an instruction. Size operators are coded as semicolon character followed by single character.
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
Remove the size specification following the instruction.
MyData: SECTION
data: DS.B 1
MyCode: SECTION
entry:
ADC data