1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2025-08-09 15:25:01 +00:00
Files
SixtyPical/eg/rudiments/cmp.60p

75 lines
1017 B
Plaintext

// Should print ENLGG
word w1
word w2
define chrout routine
inputs a
trashes a
@ 65490
define main routine
outputs w1, w2
trashes a, x, y, z, n, c, v
{
copy 4000, w1
copy 4000, w2
cmp w1, w2
if z {
ld a, 69 // E
call chrout
} else {
ld a, 78 // N
call chrout
}
copy 4000, w1
copy 4001, w2
cmp w1, w2
if z {
ld a, 69 // E
call chrout
} else {
ld a, 78 // N
call chrout
}
copy 20000, w1
copy 20001, w2
cmp w1, w2
if c {
ld a, 71 // G
call chrout
} else {
ld a, 76 // L
call chrout
}
copy 20001, w1
copy 20001, w2
cmp w1, w2
if c {
ld a, 71 // G
call chrout
} else {
ld a, 76 // L
call chrout
}
copy 20002, w1
copy 20001, w2
cmp w1, w2
if c {
ld a, 71 // G
call chrout
} else {
ld a, 76 // L
call chrout
}
}