1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-05 15:29:07 +00:00
SixtyPical/eg/if.60p

12 lines
116 B
Plaintext

routine foo
inputs a
outputs a
{
cmp a, 42
if z {
ld a, 7
} else {
ld a, 23
}
}