[ERROR]
An absolute EQU or SET label 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.
label: EQU $FF30
dataSec: SECTION
data: DS.W 1
codeSec1: SECTION
entry:
LDD label, PCR
STD data
Make the section an absolute section.
label: EQU $FF30
dataSec: SECTION
data: DS.W 1
ORG $C000
entry:
LDD label, PCR
STD data