[ERROR]
A ENDFOR without corresponding FOR was found.
; FOR j := $1000 < $1003
DC.W j
ENDFOR
Check that every ENDFOR has a corresponding FOR. In the example, remove the semicolon.
FOR j = $1000 TO $1003
DC.W j
ENDFOR
Check that the Option -Compat=b is enabled.