Prep for release of 0.4.
Chris Pressey
7 years ago
0 | 0 |
History of SixtyPical
|
1 | 1 |
=====================
|
2 | 2 |
|
3 | |
0.1
|
|
3 |
0.4
|
4 | 4 |
---
|
5 | 5 |
|
6 | |
Initial inspired-but-messy version implemented in Haskell.
|
|
6 |
* Added `repeat` loops to the language, which can repeat until a flag
|
|
7 |
is set (or `not` set), or which can repeat `forever`.
|
|
8 |
* `if not` inverts the sense of the test.
|
|
9 |
* Added explicitly-addressed memory locations.
|
|
10 |
|
|
11 |
0.3
|
|
12 |
---
|
|
13 |
|
|
14 |
* Added external routine declarations.
|
|
15 |
* Added ability to compile to 6502 machine code and output a `PRG` file.
|
7 | 16 |
|
8 | 17 |
0.2
|
9 | 18 |
---
|
|
13 | 22 |
analysis completely right before adding more sophisticated and useful features
|
14 | 23 |
in future versions.
|
15 | 24 |
|
16 | |
0.3
|
|
25 |
0.1
|
17 | 26 |
---
|
18 | 27 |
|
19 | |
* Added external routine declarations.
|
20 | |
* Added ability to compile to 6502 machine code and output a `PRG` file.
|
21 | |
|
22 | |
0.4
|
23 | |
---
|
24 | |
|
25 | |
* Added `repeat` loops to the language, which can repeat until a flag
|
26 | |
is set (or `not` set), or which can repeat `forever`.
|
27 | |
* `if not` inverts the sense of the test.
|
28 | |
* Added explicitly-addressed memory locations.
|
|
28 |
Initial inspired-but-messy version implemented in Haskell.
|
12 | 12 |
|
13 | 13 |
It is a **work in progress**, currently at the **proof-of-concept** stage.
|
14 | 14 |
|
15 | |
The current released version of SixtyPical is 0.3. The current development
|
16 | |
version of SixtyPical, unreleased as of this writing, is 0.4-PRE.
|
|
15 |
The current released version of SixtyPical is 0.4. The current development
|
|
16 |
version of SixtyPical, unreleased as of this writing, is 0.5-PRE.
|
17 | 17 |
|
18 | 18 |
Documentation
|
19 | 19 |
-------------
|
0 | 0 |
SixtyPical
|
1 | 1 |
==========
|
2 | 2 |
|
3 | |
This document describes the SixtyPical programming language version 0.4-PRE,
|
|
3 |
This document describes the SixtyPical programming language version 0.4,
|
4 | 4 |
both its execution aspect and its static analysis aspect (even though
|
5 | 5 |
these are, technically speaking, separate concepts.)
|
6 | 6 |
|