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

I guess we can note that, even though not 100% sure why it was.

This commit is contained in:
Chris Pressey 2017-12-12 14:59:20 +00:00
parent 3417fd96c7
commit 0145c6d34f
2 changed files with 2 additions and 5 deletions

View File

@ -7,6 +7,8 @@ History of SixtyPical
* Can `call` and `goto` routines that are defined further down in the source code.
* The `forward` modifier can also be used to indicate that the symbol being copied
in a `copy` to a vector is a routine that is defined further down in the source.
* Fixed bug which was preventing `if` branches to diverge in what they initialized,
if it was already initialized when going into the `if`.
0.9
---

View File

@ -46,11 +46,6 @@ Finish the little demo "game" where you can move a block around the screen with
the joystick (i.e. bring it up to par with the original demo game that was written
for SixtyPical)
### Allow branches to diverge in what they touch
For example, if the routine inputs and outputs `foo`, and one branch of an `if`
sets `foo` and the other does not touch it, that should be OK.
### `vector table` type
### `low` and `high` address operators