A2314: Expression must be absolute

[ERROR]

Description

An absolute expression is expected at the specified position. Assembler directives expecting an absolute value are: OFFSET, ORG, ALIGN, SET, BASE, DS, LLEN, PLEN, SPC, TABS, IF, IFEQ, IFNE, IFLE, IFLT, IFGE, IFGT. The first operand in a DCB directive must be absolute:

Example
  DataSec: SECTION

  label1:  DS.W 1

  label2:  DS.W 2

  label3:  EQU  8

  codeSec: SECTION

           BASE label1

           ALIGN label2
  
Tips

Specify an absolute expression at the specified position.

Example
  DataSec: SECTION

  label1:  DS.W 1

  label2:  DS.W 2

  label3:  EQU  8

  codeSec: SECTION

           BASE label3

           ALIGN 4