A2333: Forward reference not allowed

[ERROR]

Description

A forward reference has been detected in an EQU instruction. This is not allowed.

Example
  CstSec: SECTION

          ; ...

  equLab: EQU label2

          ; ...

  label2: DC.W $6754

          ; ...
  
Tips

Move the EQU after the definition of the label it refers to.

Example
  CstSec: SECTION

          ; ...

  label2: DC.W $6754

          ; ...

  equLab: EQU label2

          ; ...