prog8/examples/test.p8
2021-04-15 22:56:52 +02:00

18 lines
273 B
Lua

%import textio
%import gfx2
%zeropage basicsafe
main {
sub start() {
repeat {
sys.waitvsync()
ubyte joy = lsb(cx16.joystick_get2(0))
txt.print_ubbin(joy,1)
txt.nl()
}
repeat {
}
}
}