2015-10-18 13:37:35 +01:00
|
|
|
History of SixtyPical
|
|
|
|
=====================
|
|
|
|
|
2015-10-23 16:37:18 +01:00
|
|
|
0.6
|
|
|
|
---
|
2015-10-19 12:22:44 +01:00
|
|
|
|
|
|
|
* Added `routine` and `vector` types, and `copy` instruction.
|
2015-10-19 19:17:27 +01:00
|
|
|
* Both routines and vectors can declare `inputs`, `outputs`, and `trashes`,
|
|
|
|
and these must be compatible to assign a routine or vector to a vector.
|
2015-10-22 09:56:45 +01:00
|
|
|
* Added `goto` (tail call) instruction, jumps to routine or through vector.
|
2015-10-22 19:20:48 +01:00
|
|
|
* `call` can call a subroutine indirectly, via a vector.
|
2015-10-22 09:56:45 +01:00
|
|
|
* Routine name is now shown in analysis error messages.
|
2015-10-19 12:22:44 +01:00
|
|
|
|
2015-10-18 19:02:07 +01:00
|
|
|
0.5
|
|
|
|
---
|
2015-10-18 18:32:20 +01:00
|
|
|
|
|
|
|
* Added `byte table` type locations and indexed addressing (`+ x`, `+ y`).
|
2015-10-18 18:47:47 +01:00
|
|
|
* Integer literals may be given in hexadecimal.
|
2015-10-18 18:54:28 +01:00
|
|
|
* Line comments may be included in source code by prefixing them with `//`.
|
2015-10-18 18:32:20 +01:00
|
|
|
|
2015-10-18 16:34:18 +01:00
|
|
|
0.4
|
2015-10-18 13:37:35 +01:00
|
|
|
---
|
|
|
|
|
2015-10-18 16:34:18 +01:00
|
|
|
* Added `repeat` loops to the language, which can repeat until a flag
|
|
|
|
is set (or `not` set), or which can repeat `forever`.
|
|
|
|
* `if not` inverts the sense of the test.
|
|
|
|
* Added explicitly-addressed memory locations.
|
|
|
|
|
|
|
|
0.3
|
|
|
|
---
|
|
|
|
|
|
|
|
* Added external routine declarations.
|
|
|
|
* Added ability to compile to 6502 machine code and output a `PRG` file.
|
2015-10-18 13:37:35 +01:00
|
|
|
|
|
|
|
0.2
|
|
|
|
---
|
|
|
|
|
|
|
|
A complete reboot of SixtyPical 0.1. The reference implementation was
|
|
|
|
rewritten in Python. The language was much simplified. The aim was to get the
|
|
|
|
analysis completely right before adding more sophisticated and useful features
|
|
|
|
in future versions.
|
|
|
|
|
2015-10-18 16:34:18 +01:00
|
|
|
0.1
|
2015-10-18 13:55:40 +01:00
|
|
|
---
|
|
|
|
|
2015-10-18 16:34:18 +01:00
|
|
|
Initial inspired-but-messy version implemented in Haskell.
|