prog8/examples/test.p8
2019-01-12 21:38:31 +01:00

37 lines
540 B
Lua

%import c64utils
%import c64flt
~ main {
sub start() {
ubyte i=101
A=4
A=5
A=6
A=i
A=99 ; folded ok!
i=4
i=5
i=6
i=A
i=99 ; folded ok
@($d020) = 4
@($d020) = 5
@($d020) = 6
@($d020) = 7
@($d020) = 8 ; @todo should not be folded
c64.EXTCOL = 4
c64.EXTCOL = 5
c64.EXTCOL = 6
c64.EXTCOL = 7
c64.EXTCOL = 8 ; @todo not fold
}
}