1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2025-08-06 11:25:22 +00:00
Files
SixtyPical/eg/goto.60p
Chris Pressey 16450e06d5 Compile goto's.
2015-10-21 15:51:52 +01:00

16 lines
186 B
Plaintext

routine chrout
inputs a
trashes a
@ 65490
routine bar trashes a, z, n {
ld a, 66
call chrout
}
routine main trashes a, z, n {
ld a, 65
call chrout
goto bar
}