mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 17:32:01 +00:00
16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
include "joystick.60p"
|
|
|
|
word screen @ 1024
|
|
|
|
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
|
|
}
|