A2502: ENDFOR missing

[ERROR]

Description

In a for directive, a ENFOR was expected.

Example
    FOR j := $1000 < $1003

     DC.W j
  
Tips

Check that every FOR has a corresponding ENDFOR.

    FOR j = $1000 TO $1003

     DC.W j

    ENDFOR
  

Check that the Option -Compat=b is enabled.

See also