- Evaluate b before a
This makes instructions that address the stack twice meaningful instead of confusing and useless.
ADD PEEK, POP
should pop the top of the stack and add it to the second entry, but currently the PEEK
is evaluated before the POP
occurs.
- Add [SP+next word] addressing