1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-29 03:51:35 +00:00
SixtyPical/eg/c64/joystick.60p

16 lines
222 B
Plaintext
Raw Normal View History

include "joy2delta.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
}