[ERROR]
The label specified in the directive ABSENTRY is an EQU label or is located in a data section. The label specified in ABSENTRY must be a valid label defined in a code section.
ABSENTRY const
const: EQU $1000
ORG const
DC.B 1
DC.B 2
Specify a label defined in a code section in ABSENTRY or remove the directive ABSENTRY.
ABSENTRY entry
const: EQU $1000
ORG const
entry: DC.B 1
DC.B 2