A1412: Relocatable object `<Symbol>' not allowed if generating absolute file

[ERROR]

Description

No relocatable objects are allowed if the user requests the generation of an absolute file. This message occurs primarily for objects in the default (relocatable) section.

Example
        ABSENTRY main

  main: DC.B 1

        DC.B 2
  
Tips

Place all objects into absolute sections.

Example
        ABSENTRY main

        ORG  $1000

  main: DC.B 1

        DC.B 2