1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2025-01-12 01:30:17 +00:00
Cat's Eye Technologies 6461aa8eff Split into modules.
2014-04-01 12:12:12 +01:00
2014-03-31 23:14:07 +01:00
2014-04-01 12:12:12 +01:00
2014-03-31 23:14:07 +01:00
2014-04-01 12:12:12 +01:00
2014-03-31 23:31:30 +01:00
2014-03-31 23:31:30 +01:00

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"
Description
Languages
Python 98.2%
Shell 1.5%
xBase 0.3%