A2402: Comma expected

[ERROR]

Description

A comma character is missing between two operands of an instruction or directive.

Example
  DataSec:  SECTION

  Data:     DS.B  1

  ConstSec: SECTION

            DC.B  2 3
  
Tips

The comma (',') character is used as separator between instruction operands.

Example
  DataSec:  SECTION

  Data:     DS.B  1

  ConstSec: SECTION

            DC.B  2, 3