[DISABLE, INFORMATION, WARNING, ERROR]
A label is specified in front of a directive, which does not accept any label. The macro assembler ignores such label. These labels cannot not be referenced anywhere else in the application. Labels will be ignored in front of following directives: ELSE, ENDIF, END, ENDM, INCLUDE, CLIST, ALIST, FAIL, LIST, MEXIT, NOLIST, NOL, OFFSET, ORG, NOPAGE, PAGE, LLEN, PLEN, SPC, TABS, TITLE, TTL.
CodeSec: SECTION
; ...
label: PLEN 50
; ...
label2: LIST
; ...
Remove the label which is not required. If you need a label at that position in a section, define the label on a separate line.
CodeSec: SECTION
; ...
label:
PLEN 50
; ...
label2:
LIST
; ...