prog8/examples/test.p8
2022-11-15 01:17:28 +01:00

9 lines
137 B
Lua

main {
sub start() {
uword xx = 100
uword yy = xx / 256 ; TODO hangs in optimizer for 6502
yy++
}
}