1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-25 23:49:17 +00:00
SixtyPical/eg/c64/joystick-demo.60p

16 lines
221 B
Plaintext
Raw Normal View History

include "joystick.60p"
word screen @ 1024
2018-09-09 13:01:38 +00:00
define main routine
inputs joy2
outputs delta
trashes a, x, z, n, screen
{
repeat {
call read_stick
copy delta, screen
ld a, 1
} until z
}