Symbols that are defined in the predefined BSCT section are always accessed using the direct-addressing mode, as listed in the following listing:
... BSCT DirLabel: DS.B 3 dataSec: SECTION ExtLabel: DS.B 5 ... codeSec: SECTION ... LDA DirLabel ; Direct addressing mode is used. ... LDA ExtLabel ; Extended addressing mode is used.