A1411: PC Relative addressing mode is not supported to constants

[ERROR]

Description

An absolute expression has been detected in an indexed PC relative addressing mode. This is not legal in a relocatable expression. Not all assemblers do have special PC Relative addressing modes. Such assemblers will not issue this message at all.

Example
  dataSec:   SECTION

  data:      DS.W 1

  codeSec1:  SECTION

  entry:

             LDD  $FF35, PCR

             STD  data
  
Tips

Make the section an absolute section.

Example
  dataSec:   SECTION

  data:      DS.W 1

             ORG $C000

  entry:

             LDD  $FF35, PCR

             STD  data