2014-04-03 12:32:06 +00:00
|
|
|
Checking SixtyPical Programs
|
|
|
|
============================
|
|
|
|
|
|
|
|
-> Tests for functionality "Parse SixtyPical program"
|
|
|
|
|
|
|
|
-> Functionality "Parse SixtyPical program" is implemented by
|
|
|
|
-> shell command "bin/sixtypical parse %(test-file)"
|
|
|
|
|
|
|
|
-> Tests for functionality "Check SixtyPical program"
|
|
|
|
|
|
|
|
-> Functionality "Check SixtyPical program" is implemented by
|
|
|
|
-> shell command "bin/sixtypical check %(test-file)"
|
|
|
|
|
2014-04-04 14:32:47 +00:00
|
|
|
Some Basic Syntax
|
|
|
|
-----------------
|
|
|
|
|
2014-04-03 12:32:06 +00:00
|
|
|
`main` must be present.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| nop
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
| routine frog {
|
|
|
|
| nop
|
|
|
|
| }
|
|
|
|
? missing 'main' routine
|
|
|
|
|
|
|
|
A comment may appear after each command.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| lda #1 ; we assemble the fnord using
|
|
|
|
| ldx #1 ; multiple lorem ipsums which
|
|
|
|
| ldy #1
|
|
|
|
| lda #1 ; we
|
|
|
|
| ldx #1 ; found under the bridge by the old mill yesterday
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
A comment may appear after each declaration.
|
|
|
|
|
|
|
|
| reserve byte lives ; fnord
|
|
|
|
| assign byte gdcol 647 ; fnord
|
|
|
|
| external blastoff 4 ; fnnnnnnnnnnnnnnnnfffffffff
|
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| nop
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
2014-04-04 14:32:47 +00:00
|
|
|
Addresses
|
|
|
|
---------
|
|
|
|
|
|
|
|
An address may be declared with `reserve`, which is like `.data` or `.bss`
|
|
|
|
in an assembler. This is an address into the program's data. It is global
|
|
|
|
to all routines.
|
|
|
|
|
|
|
|
| reserve byte lives
|
|
|
|
| routine main {
|
|
|
|
| lda #3
|
|
|
|
| sta lives
|
|
|
|
| }
|
|
|
|
| routine died {
|
|
|
|
| dec lives
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
An address may be declared with `locate`, which is like `.alias` in an
|
|
|
|
assembler, with the understanding that the value will be treated "like an
|
|
|
|
address." This is generally an address into the operating system or hardware
|
|
|
|
(e.g. kernal routine, I/O port, etc.)
|
|
|
|
|
|
|
|
| assign byte screen $0400
|
|
|
|
| routine main {
|
|
|
|
| lda #0
|
|
|
|
| sta screen
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
The body of a routine may not refer to an address literally. It must use
|
|
|
|
a symbol that was declared previously with `reserve` or `assign`.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| lda #0
|
|
|
|
| sta $0400
|
|
|
|
| }
|
|
|
|
? unexpected "$"
|
|
|
|
|
|
|
|
| assign byte screen $0400
|
|
|
|
| routine main {
|
|
|
|
| lda #0
|
|
|
|
| sta screen
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
Test for many combinations of `reserve` and `assign`.
|
2014-04-03 12:32:06 +00:00
|
|
|
|
|
|
|
| reserve byte lives
|
|
|
|
| assign byte gdcol 647
|
|
|
|
| reserve word score
|
|
|
|
| assign word memstr 641
|
|
|
|
| reserve vector v
|
|
|
|
| assign vector cinv 788
|
|
|
|
| reserve byte table frequencies
|
|
|
|
| assign byte table screen 1024
|
|
|
|
| routine main {
|
|
|
|
| nop
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
A program may declare an `external`.
|
|
|
|
|
|
|
|
| external blastoff 49152
|
|
|
|
| routine main {
|
|
|
|
| jsr blastoff
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
All declarations (`reserve`s and `assign`s) must come before any `routines`.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| lda score
|
|
|
|
| }
|
|
|
|
| reserve word score
|
|
|
|
? expecting "routine"
|
|
|
|
|
|
|
|
All locations used in all routines must be declared first.
|
|
|
|
|
|
|
|
| reserve byte score
|
|
|
|
| routine main {
|
|
|
|
| lda score
|
|
|
|
| cmp screen
|
|
|
|
| }
|
|
|
|
? undeclared location
|
|
|
|
|
|
|
|
Even in inner blocks.
|
|
|
|
|
|
|
|
| reserve byte score
|
|
|
|
| assign byte screen 1024
|
|
|
|
| routine main {
|
|
|
|
| lda score
|
|
|
|
| cmp screen
|
|
|
|
| if beq {
|
|
|
|
| lda score
|
|
|
|
| } else {
|
|
|
|
| lda fnord
|
|
|
|
| }
|
|
|
|
| }
|
|
|
|
? undeclared location
|
|
|
|
|
|
|
|
All routines jsr'ed to must be defined, or external.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| jsr blastoff
|
|
|
|
| }
|
|
|
|
? undeclared routine
|
|
|
|
|
|
|
|
No duplicate location names in declarations.
|
|
|
|
|
|
|
|
| reserve word score
|
|
|
|
| assign word score 4000
|
|
|
|
| routine main {
|
|
|
|
| nop
|
|
|
|
| }
|
|
|
|
? duplicate location name
|
|
|
|
|
|
|
|
No duplicate routine names.
|
|
|
|
|
|
|
|
| routine main {
|
|
|
|
| nop
|
|
|
|
| }
|
|
|
|
| routine main {
|
|
|
|
| txa
|
|
|
|
| }
|
|
|
|
? duplicate routine name
|
|
|
|
|
|
|
|
No duplicate routine names, including externals.
|
|
|
|
|
|
|
|
| external main 7000
|
|
|
|
| routine main {
|
|
|
|
| nop
|
|
|
|
| }
|
|
|
|
? duplicate routine name
|
|
|
|
|
2014-04-03 17:52:58 +00:00
|
|
|
We can jump indirectly through a vector.
|
2014-04-03 12:32:06 +00:00
|
|
|
|
|
|
|
| reserve vector blah
|
|
|
|
| routine main {
|
2014-04-03 17:52:58 +00:00
|
|
|
| jmp (blah)
|
2014-04-03 12:32:06 +00:00
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
2014-04-03 17:52:58 +00:00
|
|
|
We can't jump indirectly through a word.
|
2014-04-03 12:32:06 +00:00
|
|
|
|
|
|
|
| reserve word blah
|
|
|
|
| routine main {
|
2014-04-03 17:52:58 +00:00
|
|
|
| jmp (blah)
|
2014-04-03 12:32:06 +00:00
|
|
|
| }
|
|
|
|
? jmp to non-vector
|
|
|
|
|
2014-04-03 17:52:58 +00:00
|
|
|
We can't jump indirectly through a byte.
|
2014-04-03 12:32:06 +00:00
|
|
|
|
|
|
|
| assign byte screen 1024
|
|
|
|
| routine main {
|
2014-04-03 17:52:58 +00:00
|
|
|
| jmp (screen)
|
2014-04-03 12:32:06 +00:00
|
|
|
| }
|
|
|
|
? jmp to non-vector
|
|
|
|
|
|
|
|
We can absolute-indexed a byte table.
|
|
|
|
|
|
|
|
| assign byte table screen 1024
|
|
|
|
| routine main {
|
|
|
|
| sta screen, x
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
We cannot absolute-indexed a byte.
|
|
|
|
|
|
|
|
| assign byte screen 1024
|
|
|
|
| routine main {
|
|
|
|
| sta screen, x
|
|
|
|
| }
|
|
|
|
? indexed access of non-table
|
|
|
|
|
|
|
|
We cannot absolute-indexed a word.
|
|
|
|
|
|
|
|
| assign word screen 1024
|
|
|
|
| routine main {
|
|
|
|
| sta screen, x
|
|
|
|
| }
|
|
|
|
? indexed access of non-table
|
|
|
|
|
|
|
|
We cannot absolute access a word.
|
|
|
|
|
|
|
|
| assign word screen 1024
|
|
|
|
| routine main {
|
|
|
|
| ldx screen
|
|
|
|
| }
|
|
|
|
? incompatible types 'Word' and 'Byte'
|
|
|
|
|
|
|
|
No, not even with `ora`.
|
|
|
|
|
|
|
|
| assign word screen 1024
|
|
|
|
| routine main {
|
|
|
|
| ora screen
|
|
|
|
| }
|
|
|
|
? incompatible types 'Byte' and 'Word'
|
|
|
|
|
|
|
|
Instead, we have to do this.
|
|
|
|
|
|
|
|
| assign word screen 1024
|
|
|
|
| routine main {
|
|
|
|
| lda <screen
|
|
|
|
| lda >screen
|
|
|
|
| }
|
|
|
|
= True
|
|
|
|
|
|
|
|
We cannot absolute access a vector.
|
|
|
|
|
|
|
|
| assign vector screen 1024
|
|
|
|
| routine main {
|
|
|
|
| lda screen
|
|
|
|
| }
|
|
|
|
? incompatible types 'Vector' and 'Byte'
|
2014-04-04 14:32:47 +00:00
|
|
|
|
|
|
|
### Addresses ###
|
|
|
|
|
|
|
|
An address knows what kind of data is stored at the address:
|
|
|
|
|
|
|
|
* `byte`: an 8-bit byte. not part of a word. not to be used as an address.
|
|
|
|
(could be an index though.)
|
|
|
|
* `word`: a 16-bit word. not to be used as an address.
|
|
|
|
* `vector`: a 16-bit address of a routine. Only a handful of operations
|
|
|
|
are supported on vectors:
|
|
|
|
|
|
|
|
* copying the contents of one vector to another
|
|
|
|
* copying the address of a routine into a vector
|
|
|
|
* jumping indirectly to a vector (i.e. to the code at the address
|
|
|
|
contained in the vector (and this can only happen at the end of a
|
|
|
|
routine (NYI))
|
|
|
|
* `jsr`'ing indirectly to a vector (which is done with a fun
|
|
|
|
generated trick (NYI))
|
|
|
|
|
|
|
|
* `byte table`: a series of `byte`s contiguous in memory starting from the
|
|
|
|
address. This is the only kind of address that can be used in
|
|
|
|
indexed addressing.
|
|
|
|
|
|
|
|
### Blocks ###
|
|
|
|
|
|
|
|
Each routine is a block. It may be composed of inner blocks, if those
|
|
|
|
inner blocks are attached to certain instructions.
|
|
|
|
|
|
|
|
SixtyPical does not have instructions that map literally to the 6502 branch
|
|
|
|
instructions. Instead, it has an `if` construct, with two blocks (for the
|
|
|
|
"then" and `else` parts), and the branch instructions map to conditions for
|
|
|
|
this construct.
|
|
|
|
|
|
|
|
Similarly, there is a `repeat` construct. The same branch instructions can
|
|
|
|
be used in the condition to this construct. In this case, they branch back
|
|
|
|
to the top of the `repeat` loop.
|
|
|
|
|
|
|
|
The abstract states of the machine at each of the different block exits are
|
|
|
|
merged during analysis. If any register or memory location is treated
|
|
|
|
inconsistently (e.g. updated in one branch of the test, but not the other,)
|
|
|
|
that register cannot subsequently be used without a declaration to the effect
|
|
|
|
that we know what's going on. (This is all a bit fuzzy right now.)
|
|
|
|
|
|
|
|
There is also no `rts` instruction. It is included at the end of a routine,
|
|
|
|
but only when the routine is used as a subroutine. Also, if the routine
|
|
|
|
ends by `jsr`ing another routine, it reserves the right to do a tail-call
|
|
|
|
or even a fallthrough.
|
|
|
|
|
|
|
|
There are also _with_ instructions, which are associated with three opcodes
|
|
|
|
that have natural symmetrical opcodes: `pha`, `php`, and `sei`. These
|
|
|
|
instructions take a block. The natural symmetrical opcode is inserted at
|
|
|
|
the end of the block.
|