2017-11-20 14:10:43 +00:00
|
|
|
SixtyPical Syntax
|
|
|
|
=================
|
2015-10-17 12:50:21 +00:00
|
|
|
|
|
|
|
This is a test suite, written in [Falderal][] format, for the syntax of
|
|
|
|
the Sixtypical language, disgregarding execution, static analysis, etc.
|
|
|
|
|
2015-10-20 08:33:30 +00:00
|
|
|
Note that these example programs are intended to be syntactically correct,
|
|
|
|
but not necessarily sensible programs.
|
|
|
|
|
2015-10-17 12:50:21 +00:00
|
|
|
[Falderal]: http://catseye.tc/node/Falderal
|
|
|
|
|
2017-11-20 14:10:43 +00:00
|
|
|
-> Functionality "Check syntax of SixtyPical program" is implemented by
|
2015-10-17 12:50:21 +00:00
|
|
|
-> shell command "bin/sixtypical %(test-body-file) && echo ok"
|
|
|
|
|
2017-11-20 14:10:43 +00:00
|
|
|
-> Tests for functionality "Check syntax of SixtyPical program"
|
2015-10-17 12:50:21 +00:00
|
|
|
|
|
|
|
Rudimentary program.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, 0
|
|
|
|
| add a, 1
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
2015-10-18 17:54:28 +00:00
|
|
|
Program with comments.
|
|
|
|
|
|
|
|
| // Welcome to my program.
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, 0
|
|
|
|
| add a, 1 // We are adding the thing.
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
2015-10-18 17:47:47 +00:00
|
|
|
Hex literals.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, $ff
|
|
|
|
| add a, $01
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
|
|
|
Syntax error.
|
2015-10-17 12:50:21 +00:00
|
|
|
|
|
|
|
| routine foo (
|
|
|
|
| ld a, 0
|
|
|
|
| add a, 1
|
|
|
|
| )
|
|
|
|
? SyntaxError
|
|
|
|
|
2015-10-18 17:47:47 +00:00
|
|
|
Another syntax error.
|
2015-10-18 15:22:36 +00:00
|
|
|
|
|
|
|
| byte glee
|
|
|
|
| {
|
|
|
|
| ld a, 0
|
|
|
|
| add a, 1
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
2015-10-17 12:50:21 +00:00
|
|
|
Extern routines
|
|
|
|
|
|
|
|
| routine chrout
|
|
|
|
| inputs a
|
|
|
|
| trashes a
|
|
|
|
| @ 65490
|
|
|
|
|
|
|
|
|
| routine chrin
|
|
|
|
| outputs a
|
|
|
|
| trashes x
|
|
|
|
| @ 65487
|
|
|
|
= ok
|
2015-10-18 12:37:35 +00:00
|
|
|
|
|
|
|
If with not
|
|
|
|
|
|
|
|
| routine foo {
|
|
|
|
| ld y, 0
|
|
|
|
| cmp y, 10
|
|
|
|
| if not z {
|
|
|
|
| inc y
|
|
|
|
| cmp y, 10
|
|
|
|
| }
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
|
|
|
Repeat loop
|
|
|
|
|
|
|
|
| routine foo {
|
|
|
|
| ld y, 0
|
|
|
|
| repeat {
|
|
|
|
| inc y
|
|
|
|
| cmp y, 10
|
|
|
|
| } until z
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
|
|
|
"While" loop
|
|
|
|
|
|
|
|
| routine foo inputs y {
|
|
|
|
| repeat {
|
|
|
|
| cmp y, 10
|
|
|
|
| if not z {
|
|
|
|
| inc y
|
|
|
|
| }
|
2015-10-18 14:32:28 +00:00
|
|
|
| } until z
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
|
|
|
Repeat forever
|
|
|
|
|
|
|
|
| routine foo inputs y {
|
|
|
|
| repeat {
|
|
|
|
| inc y
|
|
|
|
| } forever
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
|
|
|
Repeat with not
|
|
|
|
|
|
|
|
| routine foo inputs y {
|
|
|
|
| repeat {
|
|
|
|
| inc y
|
|
|
|
| } until not z
|
2015-10-18 12:37:35 +00:00
|
|
|
| }
|
|
|
|
= ok
|
2015-10-18 15:22:36 +00:00
|
|
|
|
2016-06-16 16:03:31 +00:00
|
|
|
Explicit memory address.
|
2015-10-18 15:22:36 +00:00
|
|
|
|
|
|
|
| byte screen @ 1024
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, 100
|
|
|
|
| st a, screen
|
|
|
|
| }
|
|
|
|
= ok
|
2015-10-18 16:32:12 +00:00
|
|
|
|
2016-06-16 16:02:13 +00:00
|
|
|
Initialized memory locations.
|
|
|
|
|
2016-06-16 16:03:31 +00:00
|
|
|
| byte lives : 3
|
2016-06-16 16:02:13 +00:00
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, lives
|
|
|
|
| st a, lives
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
2016-06-16 16:10:43 +00:00
|
|
|
Cannot have both initial value and explicit address.
|
|
|
|
|
|
|
|
| byte screen : 3 @ 1024
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, lives
|
|
|
|
| st a, lives
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
2016-06-16 16:08:57 +00:00
|
|
|
User-defined locations of other types.
|
|
|
|
|
|
|
|
| byte table screen @ 1024
|
|
|
|
| word r1
|
|
|
|
| word r2 @ 60000
|
|
|
|
| word r3 : 2000
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
2015-10-18 16:32:12 +00:00
|
|
|
Can't access an undeclared memory location.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, 0
|
|
|
|
| st a, lives
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
|
|
|
Can't define two memory locations with the same name.
|
|
|
|
|
|
|
|
| byte lives
|
|
|
|
| byte lives
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld a, 0
|
|
|
|
| st a, lives
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
|
|
|
Can't shadow the name of a register or a flag.
|
|
|
|
|
|
|
|
| byte a
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
|
|
|
| byte z
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
2015-10-19 11:22:44 +00:00
|
|
|
Can't call routine that hasn't been defined.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld x, 0
|
|
|
|
| ld y, 1
|
|
|
|
| call up
|
|
|
|
| call up
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
|
|
|
And you can't call a non-routine.
|
|
|
|
|
|
|
|
| byte up
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld x, 0
|
|
|
|
| ld y, 1
|
|
|
|
| call up
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld x, 0
|
|
|
|
| ld y, 1
|
|
|
|
| call x
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
2015-10-18 16:32:12 +00:00
|
|
|
|
|
|
|
Can't define two routines with the same name.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| inc x
|
|
|
|
| inc y
|
|
|
|
| }
|
|
|
|
| routine main {
|
|
|
|
| ld x, 0
|
|
|
|
| ld y, 1
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
2015-10-18 16:40:53 +00:00
|
|
|
|
|
|
|
Declaring a byte table memory location.
|
|
|
|
|
|
|
|
| byte table tab
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| ld x, 0
|
|
|
|
| ld y, 0
|
|
|
|
| ld a, tab + x
|
|
|
|
| st a, tab + y
|
|
|
|
| }
|
|
|
|
= ok
|
2015-10-18 18:41:26 +00:00
|
|
|
|
2015-10-20 08:33:30 +00:00
|
|
|
Declaring and calling a vector.
|
2015-10-18 18:41:26 +00:00
|
|
|
|
|
|
|
| vector cinv
|
2015-10-19 12:04:08 +00:00
|
|
|
| inputs a
|
|
|
|
| outputs x
|
|
|
|
| trashes a, x, z, n
|
|
|
|
| @ 788
|
2015-10-18 18:41:26 +00:00
|
|
|
|
|
|
|
|
| routine foo {
|
|
|
|
| ld a, 0
|
|
|
|
| }
|
|
|
|
| routine main {
|
2015-10-18 22:15:40 +00:00
|
|
|
| with interrupts off {
|
|
|
|
| copy foo, cinv
|
|
|
|
| }
|
2015-10-20 08:33:30 +00:00
|
|
|
| call cinv
|
2015-10-18 18:41:26 +00:00
|
|
|
| }
|
|
|
|
= ok
|
2015-10-19 12:04:08 +00:00
|
|
|
|
|
|
|
Only vectors can be decorated with constraints like that.
|
|
|
|
|
|
|
|
| byte cinv
|
|
|
|
| inputs a
|
|
|
|
| outputs x
|
|
|
|
| trashes a, x, z, n
|
|
|
|
| @ 788
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
2015-10-20 13:10:33 +00:00
|
|
|
|
|
|
|
goto.
|
|
|
|
|
|
|
|
| routine foo {
|
|
|
|
| ld a, 0
|
|
|
|
| }
|
|
|
|
| routine main {
|
|
|
|
| goto foo
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
|
|
|
| vector foo
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| goto foo
|
|
|
|
| }
|
|
|
|
= ok
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| goto foo
|
|
|
|
| }
|
|
|
|
? SyntaxError
|
|
|
|
|
|
|
|
| byte foo
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| goto foo
|
|
|
|
| }
|
|
|
|
? SyntaxError
|