1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-03 17:29:33 +00:00
SixtyPical/eg/simple.60pical
Cat's Eye Technologies 650405c2fe Initial import.
2014-03-31 23:14:07 +01:00

20 lines
201 B
Plaintext

assign word fnord 4000
assign byte blerf 4002
reserve byte foo
reserve word bar
routine hello {
lda fnord
cmp blerf
lda foo
}
routine bye {
lda fnord
cmp bar
}
routine byee {
}