A2320: Value too small

[ERROR]

Description

The absolute expression specified in a directive is too small. This message can be generated in following cases:

Example
           PLEN   5

           LLEN  -4

  dataSec: SECTION

           ALIGN  0

           ; ...

  label1:  DS.W   0

           ; ...
  
Tips

Modify the absolute expression to a value in the range specified above.

Example
           PLEN   50

           LLEN   40

  dataSec: SECTION

           ALIGN  8

           ; ...

  label1:  DS.W   1

           ; ...