2014-03-31 22:31:30 +00:00
|
|
|
SixtyPical
|
|
|
|
==========
|
|
|
|
|
2018-04-18 09:57:57 +00:00
|
|
|
_Version 0.16. Work-in-progress, everything is subject to change._
|
2018-02-02 16:31:23 +00:00
|
|
|
|
2018-03-26 12:16:53 +00:00
|
|
|
**SixtyPical** is a 6502-like programming language with advanced
|
2018-03-08 13:24:00 +00:00
|
|
|
static analysis.
|
|
|
|
|
2018-03-26 12:16:53 +00:00
|
|
|
"6502-like" means that it has similar restrictions as programming
|
2018-03-08 13:24:00 +00:00
|
|
|
in 6502 assembly (e.g. the programmer must choose the registers that
|
2018-03-08 15:34:28 +00:00
|
|
|
values will be stored in) and is concomitantly easy for a compiler to
|
2018-03-08 13:24:00 +00:00
|
|
|
translate it to 6502 machine language code.
|
|
|
|
|
|
|
|
"Advanced static analysis" includes _abstract interpretation_, where we
|
|
|
|
go through the program step by step, tracking not just the changes that
|
|
|
|
happen during a _specific_ execution of the program, but _sets_ of changes
|
|
|
|
that could _possibly_ happen in any run of the program. This lets us
|
2018-03-26 12:16:53 +00:00
|
|
|
determine that certain things can never happen, which we can then formulate
|
|
|
|
as safety checks.
|
2014-04-01 12:01:27 +00:00
|
|
|
|
2015-10-16 08:30:24 +00:00
|
|
|
In practice, this means it catches things like
|
2014-04-01 12:01:27 +00:00
|
|
|
|
2015-10-16 08:30:24 +00:00
|
|
|
* you forgot to clear carry before adding something to the accumulator
|
|
|
|
* a subroutine that you call trashes a register you thought was preserved
|
2018-03-08 13:24:00 +00:00
|
|
|
* you tried to read or write a byte beyond the end of a byte array
|
2015-10-22 18:20:48 +00:00
|
|
|
* you tried to write the address of something that was not a routine, to
|
|
|
|
a jump vector
|
2014-04-04 17:27:51 +00:00
|
|
|
|
2018-03-08 15:34:28 +00:00
|
|
|
and suchlike. It also provides some convenient operations based on
|
|
|
|
machine-language programming idioms, such as
|
2015-10-22 18:20:48 +00:00
|
|
|
|
|
|
|
* copying values from one register to another (via a third register when
|
2018-03-08 13:24:00 +00:00
|
|
|
there are no underlying instructions that directly support it); this
|
|
|
|
includes 16-bit values, which are copied in two steps
|
2015-10-22 18:20:48 +00:00
|
|
|
* explicit tail calls
|
|
|
|
* indirect subroutine calls
|
|
|
|
|
2018-02-05 13:17:23 +00:00
|
|
|
The reference implementation can analyze and compile SixtyPical programs to
|
|
|
|
6502 machine code.
|
2014-04-11 21:50:03 +00:00
|
|
|
|
2018-03-08 13:36:30 +00:00
|
|
|
Quick Start
|
|
|
|
-----------
|
|
|
|
|
|
|
|
If you have the [VICE][] emulator installed, from this directory, you can run
|
|
|
|
|
|
|
|
./loadngo.sh c64 eg/c64/hearts.60p
|
|
|
|
|
|
|
|
and it will compile the [hearts.60p source code](eg/c64/hearts.60p) and
|
|
|
|
automatically start it in the `x64` emulator, and you should see:
|
|
|
|
|
|
|
|
![Screenshot of result of running hearts.60p](https://raw.github.com/catseye/SixtyPical/master/images/hearts.png)
|
|
|
|
|
|
|
|
You can try the `loadngo.sh` script on other sources in the `eg` directory
|
2018-03-26 12:16:53 +00:00
|
|
|
tree, which contains more extensive examples, including an entire
|
|
|
|
game(-like program); see [eg/README.md](eg/README.md) for a listing.
|
2018-03-08 13:36:30 +00:00
|
|
|
|
2015-10-16 09:00:51 +00:00
|
|
|
Documentation
|
|
|
|
-------------
|
2014-04-01 13:33:57 +00:00
|
|
|
|
2017-11-21 11:13:21 +00:00
|
|
|
* [Design Goals](doc/Design%20Goals.md)
|
2015-10-16 09:54:12 +00:00
|
|
|
* [SixtyPical specification](doc/SixtyPical.md)
|
2017-11-21 11:13:21 +00:00
|
|
|
* [SixtyPical revision history](HISTORY.md)
|
2017-11-17 15:48:38 +00:00
|
|
|
* [Literate test suite for SixtyPical syntax](tests/SixtyPical%20Syntax.md)
|
|
|
|
* [Literate test suite for SixtyPical analysis](tests/SixtyPical%20Analysis.md)
|
|
|
|
* [Literate test suite for SixtyPical compilation](tests/SixtyPical%20Compilation.md)
|
2018-04-05 13:10:04 +00:00
|
|
|
* [Literate test suite for SixtyPical fallthru optimization](tests/SixtyPical%20Fallthru.md)
|
2017-11-17 15:48:38 +00:00
|
|
|
* [6502 Opcodes used/not used in SixtyPical](doc/6502%20Opcodes.md)
|
2015-10-16 09:00:51 +00:00
|
|
|
|
|
|
|
TODO
|
|
|
|
----
|
|
|
|
|
2017-12-11 14:18:47 +00:00
|
|
|
### Save registers on stack
|
2017-11-21 12:10:31 +00:00
|
|
|
|
2017-12-08 15:53:18 +00:00
|
|
|
This preserves them, so that, semantically, they can be used later even though they
|
2017-11-23 17:08:40 +00:00
|
|
|
are trashed inside the block.
|
2017-11-21 12:10:31 +00:00
|
|
|
|
2017-12-13 16:23:28 +00:00
|
|
|
### And at some point...
|
|
|
|
|
2018-02-12 16:40:53 +00:00
|
|
|
* `low` and `high` address operators - to turn `word` type into `byte`.
|
|
|
|
* Related: can we simply view a (small) part of a buffer as a byte table? If not, why not?
|
2018-03-26 12:43:33 +00:00
|
|
|
* Related: add constant to buffer to get new buffer. (Or to table, but... well, maybe.)
|
2018-03-27 15:23:22 +00:00
|
|
|
* Check that the buffer being read or written to through pointer, appears in appropriate inputs or outputs set.
|
2018-02-12 14:31:26 +00:00
|
|
|
(Associate each pointer with the buffer it points into.)
|
|
|
|
* `static` pointers -- currently not possible because pointers must be zero-page, thus `@`, thus uninitialized.
|
2018-02-12 14:53:49 +00:00
|
|
|
* Question the value of the "consistent initialization" principle for `if` statement analysis.
|
2017-12-11 14:18:47 +00:00
|
|
|
* `interrupt` routines -- to indicate that "the supervisor" has stored values on the stack, so we can trash them.
|
2018-04-18 11:01:53 +00:00
|
|
|
* Add absolute-indexed for add, sub, and, or, xor, shl, shr
|
2018-02-12 14:31:26 +00:00
|
|
|
* Automatic tail-call optimization (could be tricky, w/constraints?)
|
2018-03-08 13:36:30 +00:00
|
|
|
|
|
|
|
[VICE]: http://vice-emu.sourceforge.net/
|