mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-03 00:07:02 +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
|
|
}
|
|
}
|