A2400: End of Line expected

[DISABLED, INFORMATION, WARNING, ERROR ]

Description

The assembler did not expect anything anymore on a line. This message can be generated when: A comment, which does not start with the start of comment character (';'), is specified after the instruction. A further operand is specified in the instruction. ...

Example
  DataSec: SECTION

  var:     DS.B 1     Char variable
  
Tips

Remove the invalid character or sequence of characters from the line. Insert the start of comment character at the beginning of the comment. Remove the superfluous operand.

Example
  DataSec: SECTION

  var:     DS.B 1     ; Char variable