neilsf / xc-basic3

A BASIC cross compiler for MOS 6502-based machines
MIT License
42 stars 5 forks source link

FOR loop with WORD counter above 32767 is not working #225

Closed orlof closed 1 year ago

orlof commented 1 year ago
FOR t AS WORD = 0 TO 32768
    POKE 53281,CBYTE(t)
NEXT

Loop is not executed.