A1410: EQU or SET labels are not allowed in a PC relative addressing mode

[ERROR]

Description

An absolute EQU or SET label has been detected in an indexed PC relative addressing mode. This is not legal in a relocatable expression.

Note

Not all assemblers do have special PC Relative addressing modes. Such assemblers will not issue this message at all.

Example
  label:     EQU $FF30

  dataSec:   SECTION

  data:      DS.W 1

  codeSec1:  SECTION

  entry:

             LDD  label, PCR

             STD  data
  
Tips

Make the section an absolute section.

Example
  label:     EQU $FF30

  dataSec:   SECTION

  data:      DS.W 1

             ORG $C000

  entry:

             LDD  label, PCR

             STD  data