mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 17:32:01 +00:00
Prep for release of 0.4.
This commit is contained in:
parent
522c771208
commit
f809a5ebd1
@ -1,10 +1,19 @@
|
|||||||
History of SixtyPical
|
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
|
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
|
analysis completely right before adding more sophisticated and useful features
|
||||||
in future versions.
|
in future versions.
|
||||||
|
|
||||||
0.3
|
0.1
|
||||||
---
|
---
|
||||||
|
|
||||||
* Added external routine declarations.
|
Initial inspired-but-messy version implemented in Haskell.
|
||||||
* 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.
|
|
||||||
|
@ -13,8 +13,8 @@ and suchlike.
|
|||||||
|
|
||||||
It is a **work in progress**, currently at the **proof-of-concept** stage.
|
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
|
The current released version of SixtyPical is 0.4. The current development
|
||||||
version of SixtyPical, unreleased as of this writing, is 0.4-PRE.
|
version of SixtyPical, unreleased as of this writing, is 0.5-PRE.
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
SixtyPical
|
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
|
both its execution aspect and its static analysis aspect (even though
|
||||||
these are, technically speaking, separate concepts.)
|
these are, technically speaking, separate concepts.)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user