2015-10-18 12:37:35 +00:00
|
|
|
History of SixtyPical
|
|
|
|
=====================
|
|
|
|
|
2018-03-27 11:36:33 +00:00
|
|
|
0.15
|
|
|
|
----
|
|
|
|
|
|
|
|
* Symbolic constants can be defined with the `const` keyword, and can
|
|
|
|
be used in most places where literal values can be used.
|
2018-03-28 13:52:16 +00:00
|
|
|
* Added `nop` opcode, which compiles to `NOP` (mainly for timing.)
|
2018-03-29 09:31:42 +00:00
|
|
|
* Accessing zero-page with `ld` and `st` generates zero-page opcodes.
|
2018-03-29 10:09:02 +00:00
|
|
|
* A `byte` or `word` table can be initialized with a list of constants.
|
2018-03-29 13:45:28 +00:00
|
|
|
* Branching and repeating on the `n` flag is now supported.
|
2018-03-29 10:09:02 +00:00
|
|
|
* Specifying multiple SixtyPical source files will produce a single
|
|
|
|
compiled result from their combination.
|
2018-03-28 13:20:53 +00:00
|
|
|
* Rudimentary support for Atari 2600 prelude in a 4K cartridge image,
|
2018-03-29 13:45:28 +00:00
|
|
|
and an example program in `eg/atari2600` directory.
|
2018-03-27 11:36:33 +00:00
|
|
|
|
2018-03-13 13:33:01 +00:00
|
|
|
0.14
|
|
|
|
----
|
|
|
|
|
2018-03-14 16:45:35 +00:00
|
|
|
* Added the so-called "open-faced `for` loop", which spans a loop
|
2018-03-26 13:44:54 +00:00
|
|
|
variable over a finite range, the end of which is fixed.
|
2018-03-13 17:00:49 +00:00
|
|
|
* "Tail position" is now more correctly determined for the purposes of
|
|
|
|
insisting that `goto` only appears in it.
|
2018-03-26 12:16:53 +00:00
|
|
|
* New `--origin` and `--output-format` options added to the compiler.
|
2018-03-13 13:33:01 +00:00
|
|
|
* Fixed bug when `--prelude` option was missing.
|
|
|
|
* Fixed bug when reporting line numbers of scanner-level syntax errors.
|
2018-03-26 12:16:53 +00:00
|
|
|
* Translated the small demo projects Ribos and "The PETulant Cursor" to
|
|
|
|
SixtyPical, and added them to the `eg/c64/` section of the repo.
|
2018-03-26 13:44:54 +00:00
|
|
|
* Added a `eg/vic20` example directory, with one VIC-20 example program.
|
2018-03-13 13:33:01 +00:00
|
|
|
|
2018-02-16 09:51:24 +00:00
|
|
|
0.13
|
|
|
|
----
|
|
|
|
|
|
|
|
* It is a static analysis error if it cannot be proven that a read or write
|
|
|
|
to a table falls within the defined size of that table.
|
|
|
|
* The reference analyzer's ability to prove this is currently fairly weak,
|
2018-03-06 16:04:02 +00:00
|
|
|
but it does exist:
|
|
|
|
* Loading a constant into a memory location means we know the range
|
|
|
|
is exactly that one constant value.
|
|
|
|
* `AND`ing a memory location with a value means the range of the
|
|
|
|
memory location cannot exceed the range of the value.
|
|
|
|
* Doing arithmetic on a memory location invalidates our knowledge
|
|
|
|
of its range.
|
|
|
|
* Copying a value from one memory location to another copies the
|
|
|
|
known range as well.
|
2018-03-06 14:15:53 +00:00
|
|
|
* Cleaned up the internals of the reference implementation (incl. the AST)
|
|
|
|
and re-organized the example programs in the `eg` subdirectory.
|
|
|
|
* Most errors produced by the reference implementation now include a line number.
|
2018-03-08 13:24:00 +00:00
|
|
|
* Compiler supports multiple preludes, specifically both Commodore 64 and
|
|
|
|
Commodore VIC-20; the `loadngo.sh` script supports both architectures too.
|
2018-02-16 09:51:24 +00:00
|
|
|
|
2018-02-08 11:58:24 +00:00
|
|
|
0.12
|
|
|
|
----
|
|
|
|
|
2018-02-12 16:40:53 +00:00
|
|
|
* `copy` is now understood to trash `a`, thus it is not valid to use `a` in `copy`.
|
2018-02-09 11:23:18 +00:00
|
|
|
To compensate, indirect addressing is supported in `ld` and `st`, for example,
|
|
|
|
as `ld a, [ptr] + y` and `st a, [ptr] + y`.
|
2018-02-08 14:04:51 +00:00
|
|
|
* Implements the "union rule for trashes" when analyzing `if` blocks.
|
2018-02-08 16:37:40 +00:00
|
|
|
* Even if we `goto` another routine, we can't trash an output.
|
2018-02-09 16:46:53 +00:00
|
|
|
* `static` storage locations local to routines can now be defined within routines.
|
2018-02-12 16:40:53 +00:00
|
|
|
* Small grammar changes that obviate the need for:
|
|
|
|
* the parentheses in type expressions like `vector (routine ...) table[256]`
|
|
|
|
* the `forward` keyword in forward references in source of `copy` instruction
|
2018-02-08 13:43:06 +00:00
|
|
|
* Fixed bug where `trash` was not marking the location as being virtually altered.
|
2018-02-08 11:58:24 +00:00
|
|
|
|
2018-02-02 16:31:23 +00:00
|
|
|
0.11
|
|
|
|
----
|
|
|
|
|
|
|
|
* Each table has a specified size now (although, bounds checking is not performed.)
|
|
|
|
* Initialized `byte table` values need not have all 256 bytes initialized.
|
2018-02-07 14:48:55 +00:00
|
|
|
* Syntax for types has changed. `routine` (with constraints) is a type, while
|
|
|
|
`vector` is now a type constructor (taking `routine`s only) and `table` is
|
|
|
|
also a type constructor. This permits a new `vector table` type.
|
2018-02-06 13:08:17 +00:00
|
|
|
* Added `typedef`, allowing the user to define type aliases for readability.
|
|
|
|
* Added `define name routine {...}` syntax; `routine name {...}` is now legacy.
|
2018-02-07 14:48:55 +00:00
|
|
|
* Ability to copy vectors and routines into vector tables, and vectors out of same.
|
2018-02-05 13:17:23 +00:00
|
|
|
* Removed the evaluator. The reference implementation only analyzes and compiles.
|
2018-02-05 12:35:19 +00:00
|
|
|
* Fixed bug where index register wasn't required to be initialized before table access.
|
2018-02-07 11:11:14 +00:00
|
|
|
* Fixed bug where trampolines for indirect calls weren't including a final `RTS`.
|
2018-02-02 16:31:23 +00:00
|
|
|
|
2017-12-12 13:17:00 +00:00
|
|
|
0.10
|
|
|
|
----
|
|
|
|
|
|
|
|
* Can `call` and `goto` routines that are defined further down in the source code.
|
2017-12-12 14:23:34 +00:00
|
|
|
* The `forward` modifier can also be used to indicate that the symbol being copied
|
|
|
|
in a `copy` to a vector is a routine that is defined further down in the source.
|
2017-12-12 15:34:51 +00:00
|
|
|
* Initialized `word` memory locations.
|
2017-12-12 16:04:59 +00:00
|
|
|
* Can `copy` a literal word to a word table.
|
2017-12-13 14:07:59 +00:00
|
|
|
* Subtract word (constant or memory location) from word memory location.
|
2017-12-13 15:23:06 +00:00
|
|
|
* `trash` instruction explicitly indicates a value is no longer considered meaningful.
|
2017-12-13 16:11:02 +00:00
|
|
|
* `copy []+y, a` can indirectly read a byte value into the `a` register.
|
2018-02-02 16:31:23 +00:00
|
|
|
* Initialized `byte table` memory locations.
|
2017-12-12 14:59:20 +00:00
|
|
|
* Fixed bug which was preventing `if` branches to diverge in what they initialized,
|
|
|
|
if it was already initialized when going into the `if`.
|
2017-12-12 15:18:59 +00:00
|
|
|
* Fixed a bug which was making it crash when trying to analyze `repeat forever` loops.
|
2017-12-12 13:17:00 +00:00
|
|
|
|
2017-12-07 13:15:21 +00:00
|
|
|
0.9
|
|
|
|
---
|
|
|
|
|
|
|
|
* Add word (constant or memory location) to word memory location.
|
2017-12-07 14:14:43 +00:00
|
|
|
* Add word to pointer (unchecked for now).
|
2017-12-11 12:02:48 +00:00
|
|
|
* Added `word table` type.
|
|
|
|
* Can `copy` from word storage location to word table and back.
|
2017-12-12 09:42:16 +00:00
|
|
|
* A `vector` can name itself in its `inputs` and `outputs` or `trashes` sets.
|
2017-12-07 14:14:43 +00:00
|
|
|
* Implementation: `--debug` shows some extra info during analysis.
|
2017-12-07 16:49:43 +00:00
|
|
|
* Fixed bug where `copy`ing literal word into word storage used wrong endianness.
|
2017-12-11 11:16:27 +00:00
|
|
|
* Fixed bug where every memory location was allocated 2 bytes of storage, regardless of type.
|
|
|
|
* Tests: use https://github.com/tcarmelveilleux/dcc6502 to disassemble code for comparison.
|
2017-12-07 13:15:21 +00:00
|
|
|
|
2017-11-21 11:13:21 +00:00
|
|
|
0.8
|
|
|
|
---
|
|
|
|
|
|
|
|
* Explicit word literals prefixed with `word` token.
|
|
|
|
* Can `copy` literals into user-defined destinations.
|
2017-12-01 15:10:16 +00:00
|
|
|
* Fixed bug where loop variable wasn't being checked at end of `repeat` loop.
|
2017-12-01 13:09:25 +00:00
|
|
|
* `buffer` and `pointer` types.
|
|
|
|
* `copy ^` syntax to load the addr of a buffer into a pointer.
|
2017-12-01 13:52:56 +00:00
|
|
|
* `copy []+y` syntax to read and write values to and from memory through a pointer.
|
2017-11-21 11:13:21 +00:00
|
|
|
|
2017-11-17 16:00:51 +00:00
|
|
|
0.7
|
|
|
|
---
|
2016-06-16 16:03:31 +00:00
|
|
|
|
|
|
|
* User-defined `byte` locations can be given an initial value.
|
2016-06-16 16:10:03 +00:00
|
|
|
* `word` type locations which can be defined and `copy`ed between.
|
|
|
|
* Can `copy` directly from one user-defined `byte` location to another.
|
2016-06-16 16:03:31 +00:00
|
|
|
|
2015-10-23 15:37:18 +00:00
|
|
|
0.6
|
|
|
|
---
|
2015-10-19 11:22:44 +00:00
|
|
|
|
|
|
|
* Added `routine` and `vector` types, and `copy` instruction.
|
2015-10-19 18:17:27 +00: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 08:56:45 +00:00
|
|
|
* Added `goto` (tail call) instruction, jumps to routine or through vector.
|
2015-10-22 18:20:48 +00:00
|
|
|
* `call` can call a subroutine indirectly, via a vector.
|
2015-10-22 08:56:45 +00:00
|
|
|
* Routine name is now shown in analysis error messages.
|
2015-10-19 11:22:44 +00:00
|
|
|
|
2015-10-18 18:02:07 +00:00
|
|
|
0.5
|
|
|
|
---
|
2015-10-18 17:32:20 +00:00
|
|
|
|
|
|
|
* Added `byte table` type locations and indexed addressing (`+ x`, `+ y`).
|
2015-10-18 17:47:47 +00:00
|
|
|
* Integer literals may be given in hexadecimal.
|
2015-10-18 17:54:28 +00:00
|
|
|
* Line comments may be included in source code by prefixing them with `//`.
|
2015-10-18 17:32:20 +00:00
|
|
|
|
2015-10-18 15:34:18 +00:00
|
|
|
0.4
|
2015-10-18 12:37:35 +00:00
|
|
|
---
|
|
|
|
|
2015-10-18 15:34:18 +00: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 12:37:35 +00: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 15:34:18 +00:00
|
|
|
0.1
|
2015-10-18 12:55:40 +00:00
|
|
|
---
|
|
|
|
|
2015-10-18 15:34:18 +00:00
|
|
|
Initial inspired-but-messy version implemented in Haskell.
|