1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-22 17:32:01 +00:00
SixtyPical/eg/rudiments/loop.60p

16 lines
222 B
Plaintext
Raw Normal View History

// Should print ABCDEFGHIJKLMNOPQRSTUVWXYZ
2015-10-18 12:55:40 +00:00
include "chrout.60p"
2018-09-09 14:03:43 +00:00
define main routine
2015-10-18 12:55:40 +00:00
trashes a, y, z, n, c
{
ld y, 65
repeat {
ld a, y
call chrout
inc y
cmp y, 91
} until z
}