Minor changes to docs.
Chris Pressey
4 years ago
110 | 110 |
trashes y
|
111 | 111 |
@ $c000
|
112 | 112 |
|
|
113 |
> TODO: need to confirm this, but, the rule is:
|
|
114 |
>
|
|
115 |
> * If it is NAMED, it is a memory address.
|
|
116 |
> * If it is a LITERAL INTEGER, it is an immediate value.
|
|
117 |
>
|
|
118 |
> However, this really needs a review, deep in the code, for how this is implemented.
|
|
119 |
|
113 | 120 |
Routines
|
114 | 121 |
--------
|
115 | 122 |
|
|
382 | 389 |
* It is illegal if src is not initialized.
|
383 | 390 |
* It is illegal if any location initialized at the end of the true-branch
|
384 | 391 |
is not initialized at the end of the false-branch, and vice versa.
|
|
392 |
|
|
393 |
The sense of the test can be inverted with `not`.
|
385 | 394 |
|
386 | 395 |
### repeat ###
|
387 | 396 |
|
0 | |
Sixtypical Compilation
|
|
0 |
SixtyPical Compilation
|
1 | 1 |
======================
|
2 | 2 |
|
3 | 3 |
This is a test suite, written in [Falderal][] format, for compiling
|
4 | |
Sixtypical to 6502 machine code.
|
|
4 |
SixtyPical to 6502 machine code.
|
5 | 5 |
|
6 | 6 |
[Falderal]: http://catseye.tc/node/Falderal
|
7 | 7 |
|
8 | |
-> Functionality "Compile Sixtypical program" is implemented by
|
|
8 |
-> Functionality "Compile SixtyPical program" is implemented by
|
9 | 9 |
-> shell command "bin/sixtypical --compile %(test-body-file) | fa-bin-to-hex"
|
10 | 10 |
|
11 | |
-> Tests for functionality "Compile Sixtypical program"
|
|
11 |
-> Tests for functionality "Compile SixtyPical program"
|
12 | 12 |
|
13 | 13 |
Null program.
|
14 | 14 |
|
0 | |
Sixtypical Execution
|
|
0 |
SixtyPical Execution
|
1 | 1 |
====================
|
2 | 2 |
|
3 | 3 |
This is a test suite, written in [Falderal][] format, for the dynamic
|
|
5 | 5 |
|
6 | 6 |
[Falderal]: http://catseye.tc/node/Falderal
|
7 | 7 |
|
8 | |
-> Functionality "Execute Sixtypical program" is implemented by
|
|
8 |
-> Functionality "Execute SixtyPical program" is implemented by
|
9 | 9 |
-> shell command "bin/sixtypical --execute %(test-body-file)"
|
10 | 10 |
|
11 | |
-> Tests for functionality "Execute Sixtypical program"
|
|
11 |
-> Tests for functionality "Execute SixtyPical program"
|
12 | 12 |
|
13 | 13 |
Rudimentary program.
|
14 | 14 |
|
0 | |
Sixtypical Execution
|
1 | |
====================
|
|
0 |
SixtyPical Syntax
|
|
1 |
=================
|
2 | 2 |
|
3 | 3 |
This is a test suite, written in [Falderal][] format, for the syntax of
|
4 | 4 |
the Sixtypical language, disgregarding execution, static analysis, etc.
|
|
8 | 8 |
|
9 | 9 |
[Falderal]: http://catseye.tc/node/Falderal
|
10 | 10 |
|
11 | |
-> Functionality "Check syntax of Sixtypical program" is implemented by
|
|
11 |
-> Functionality "Check syntax of SixtyPical program" is implemented by
|
12 | 12 |
-> shell command "bin/sixtypical %(test-body-file) && echo ok"
|
13 | 13 |
|
14 | |
-> Tests for functionality "Check syntax of Sixtypical program"
|
|
14 |
-> Tests for functionality "Check syntax of SixtyPical program"
|
15 | 15 |
|
16 | 16 |
Rudimentary program.
|
17 | 17 |
|