1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-01 18:29:34 +00:00
SixtyPical/eg/loop.p60

17 lines
198 B
Plaintext
Raw Normal View History

2015-10-18 12:55:40 +00:00
routine chrout
inputs a
trashes a
@ 65490
routine main
trashes a, y, z, n, c
{
ld y, 65
repeat {
ld a, y
call chrout
inc y
cmp y, 91
} until z
}