1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-07 06:29:32 +00:00

Update README

This commit is contained in:
Chris Pressey 2015-10-22 09:56:45 +01:00
parent cb2bda6afd
commit b20945898e
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,8 @@ History of SixtyPical
* Added `routine` and `vector` types, and `copy` instruction.
* Both routines and vectors can declare `inputs`, `outputs`, and `trashes`,
and these must be compatible to assign a routine or vector to a vector.
* Added `goto` (tail call) instruction, jumps to routine or through vector.
* Routine name is now shown in analysis error messages.
0.5
---

View File

@ -34,8 +34,6 @@ TODO
For 0.6:
* `call` vector (generates an JSR to a trampoline that does indirect JMP.)
* `goto` (tail call) a a vector.
* add routine name to error messages.
* routines shouldn't need to be listed as inputs.
For 0.7: