mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-04 22:05:21 +00:00
16 lines
186 B
Plaintext
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
|
|
}
|