[ERROR]
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:
DataSec: SECTION
label1: DS.W 1
label2: DS.W 2
label3: EQU 8
codeSec: SECTION
BASE label1
ALIGN label2
Specify an absolute expression at the specified position.
DataSec: SECTION
label1: DS.W 1
label2: DS.W 2
label3: EQU 8
codeSec: SECTION
BASE label3
ALIGN 4