prog8/examples/test.p8
Irmen de Jong 664818fd29 try fixing a weird problem with pointervar[idx] -> memread rewriting
this was introduced in the removal of structs somehow
2021-04-30 01:34:03 +02:00

15 lines
165 B
Lua

main {
sub start() {
uword enemyRef = $2000
ubyte cur
cur = enemyRef[1]
+ enemyRef[2]
+ enemyRef[3]
}
}