1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-02 18:41:35 +00:00

Prep for release of 0.4.

This commit is contained in:
Chris Pressey 2015-10-18 16:34:18 +01:00
parent 522c771208
commit f809a5ebd1
3 changed files with 16 additions and 16 deletions

View File

@ -1,10 +1,19 @@
History of SixtyPical
=====================
0.1
0.4
---
Initial inspired-but-messy version implemented in Haskell.
* 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.
0.2
---
@ -14,16 +23,7 @@ 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.
0.3
0.1
---
* Added external routine declarations.
* Added ability to compile to 6502 machine code and output a `PRG` file.
0.4
---
* 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.
Initial inspired-but-messy version implemented in Haskell.

View File

@ -13,8 +13,8 @@ and suchlike.
It is a **work in progress**, currently at the **proof-of-concept** stage.
The current released version of SixtyPical is 0.3. The current development
version of SixtyPical, unreleased as of this writing, is 0.4-PRE.
The current released version of SixtyPical is 0.4. The current development
version of SixtyPical, unreleased as of this writing, is 0.5-PRE.
Documentation
-------------

View File

@ -1,7 +1,7 @@
SixtyPical
==========
This document describes the SixtyPical programming language version 0.4-PRE,
This document describes the SixtyPical programming language version 0.4,
both its execution aspect and its static analysis aspect (even though
these are, technically speaking, separate concepts.)