diff --git a/HISTORY.markdown b/HISTORY.markdown index d281041..f9b7347 100644 --- a/HISTORY.markdown +++ b/HISTORY.markdown @@ -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 --- diff --git a/README.markdown b/README.markdown index cc91bcc..ae0c14b 100644 --- a/README.markdown +++ b/README.markdown @@ -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: