A2312: String expected

[ERROR]

Description

A character string is expected at the end of a FCC, IFC or IFNC directive.

Example
  one:     MACRO

           IFC \1,""

             DS.B 1

           ELSE

             DC.B \1

           ENDIF

           ENDM

           one  $42
  
Tips

Insert a character string at the requested position.

Example
  one:     MACRO

           IFC "\1",""

             DS.B 1

           ELSE

             DC.B \1

           ENDIF

           ENDM

           one  $42