A2335: Exported SET label<name> is not supported

[ERROR]

Description

The SET directive does not allow a reference to an external label.

Example
          XDEF setLab

  const:  SECTION

  lab:    DC.B    6

  setLab: SET  $77AA
  
Tips

SET labels initialized with absolute expressions can be defined in a special file to be included by assembly files, or the EQU directive can be used.

Example
          XDEF setLab

  const:  SECTION

  lab:    DC.B    6

  setLab: EQU  $77AA
  

See also

SET Directive