A1201: Label <Label> referenced in directive ABSENTRY is not absolute

[ERROR]

Description

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.

Example
          ABSENTRY  const

  const:  EQU     $1000

          ORG     const

          DC.B    1

          DC.B    2
  
Tips

Specify a label defined in a code section in ABSENTRY or remove the directive ABSENTRY.

Example
          ABSENTRY  entry

  const:  EQU     $1000

          ORG     const

  entry:  DC.B    1

          DC.B    2