mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-04 07:06:23 +00:00
12 lines
116 B
Plaintext
12 lines
116 B
Plaintext
|
routine foo
|
||
|
inputs a
|
||
|
outputs a
|
||
|
{
|
||
|
cmp a, 42
|
||
|
if z {
|
||
|
ld a, 7
|
||
|
} else {
|
||
|
ld a, 23
|
||
|
}
|
||
|
}
|