mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 01:32:13 +00:00
20 lines
201 B
Plaintext
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 {
|
|
}
|