1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-22 01:32:13 +00:00
A 6502-oriented low-level programming language supporting advanced static analysis
Go to file
Cat's Eye Technologies 6461aa8eff Split into modules.
2014-04-01 12:12:12 +01:00
eg Initial import. 2014-03-31 23:14:07 +01:00
src Split into modules. 2014-04-01 12:12:12 +01:00
.hgignore Initial import. 2014-03-31 23:14:07 +01:00
build.sh Split into modules. 2014-04-01 12:12:12 +01:00
README.markdown Three passing tests! 2014-03-31 23:31:30 +01:00
test.sh Three passing tests! 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"