A2311: Symbol name expected

[ERROR]

Description

A symbol name is missing after a XDEF, XREF, IFDEF or IFNDEF directive.

Example
           XDEF $5645

           XREF ; This is a comment

  CodeSec: SECTION

           IFDEF $5634

           ENDIF
  
Tips

Insert a symbol name at the requested position.

Example
           XDEF exportedSymbol

           XREF importedSymbol; This is a comment

  CodeSec: SECTION

  exportedSymbol:

           IFDEF changeBank

           ENDIF