1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-01 18:29:34 +00:00
SixtyPical/README.markdown
Cat's Eye Technologies b4eb0b0100 Three passing tests!
2014-03-31 23:31:30 +01:00

702 B

SixtyPical

-> Tests for functionality "Parse SixtyPical program"

-> Functionality "Parse SixtyPical program" is implemented by
-> shell command "bin/sixtypical parse %(test-file)"

| routine main {
|    nop
| }
= Program [] [Routine "main" [NOP]]

| reserve word score
| assign word scram 4000
| routine main {
|    lda scram
|    cmp score
| }
= Program [Reserve "score" Word,Assign "scram" Word 4000] [Routine "main" [LOAD A "scram",CMP A "score"]]

All declarations (reserves and assigns) must come before any routines.

| routine main {
|    lda scram
| }
| reserve word score
? expecting "routine"