Don't use deprecated Falderal variable names anymore.
Chris Pressey
8 years ago
3 | 3 |
-> Tests for functionality "Analyze SixtyPical program"
|
4 | 4 |
|
5 | 5 |
-> Functionality "Analyze SixtyPical program" is implemented by
|
6 | |
-> shell command "bin/sixtypical analyze %(test-file)"
|
|
6 |
-> shell command "bin/sixtypical analyze %(test-body-file)"
|
7 | 7 |
|
8 | 8 |
Analysis determines what storage locations have been modified by a
|
9 | 9 |
routine.
|
3 | 3 |
-> Tests for functionality "Parse SixtyPical program"
|
4 | 4 |
|
5 | 5 |
-> Functionality "Parse SixtyPical program" is implemented by
|
6 | |
-> shell command "bin/sixtypical parse %(test-file)"
|
|
6 |
-> shell command "bin/sixtypical parse %(test-body-file)"
|
7 | 7 |
|
8 | 8 |
-> Tests for functionality "Check SixtyPical program"
|
9 | 9 |
|
10 | 10 |
-> Functionality "Check SixtyPical program" is implemented by
|
11 | |
-> shell command "bin/sixtypical check %(test-file)"
|
|
11 |
-> shell command "bin/sixtypical check %(test-body-file)"
|
12 | 12 |
|
13 | 13 |
Some Basic Syntax
|
14 | 14 |
-----------------
|
3 | 3 |
-> Tests for functionality "Emit ASM for SixtyPical program"
|
4 | 4 |
|
5 | 5 |
-> Functionality "Emit ASM for SixtyPical program" is implemented by
|
6 | |
-> shell command "bin/sixtypical emit %(test-file)"
|
|
6 |
-> shell command "bin/sixtypical emit %(test-body-file)"
|
7 | 7 |
|
8 | 8 |
Emitting an `if`.
|
9 | 9 |
|
3 | 3 |
bin/sixtypical emit $1 > tmp.oph || exit 1
|
4 | 4 |
cat lib/basic_header.oph tmp.oph > tmp2.oph || exit 1
|
5 | 5 |
ophis tmp2.oph -o tmp.prg || exit 1
|
6 | |
x64 tmp.prg
|
|
6 |
x64 -joydev2 1 tmp.prg
|
7 | 7 |
rm -f tmp.oph tmp2.oph tmp.prg
|