1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-06 06:28:55 +00:00
SixtyPical/eg/simple.60pical

20 lines
201 B
Plaintext
Raw Normal View History

2014-03-31 22:14:07 +00:00
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 {
}