A2324: Illegal Base (2,8,10,16)

[ERROR]

Description

An invalid base number follows a BASE directive. The valid base numbers are 2, 8, 10 or 16. The expression specified in a BASE directive must be an absolute expression and must match one of the values enumerated above.

Example
           BASE  67

  dataSec: SECTION

           ; ...

  label:   EQU 35

           ; ...

           BASE  label
  
Tips

Specify one of the valid value in the BASE directive.

Example
           BASE  16
  
           ; ...

  dataSec: SECTION

  label:   EQU 8

           ; ...

           BASE  label