A2500: Equal expected

[ERROR]

Description

In a for directive, a = was expected.

Example
    FOR j := $1000 TO $1003

     DC.W j

    ENDFOR
  
Tips

Just use an equal in the example (no colon).

    FOR j = $1000 TO $1003

     DC.W j

    ENDFOR
  

Check that the Option -Compat=b is enabled.

See also