1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-01 18:41:32 +00:00

Prepare 0.2 release.

This commit is contained in:
Mike Naberezny 2008-11-21 18:26:08 +00:00
parent 996694c4bd
commit 5688488a8f
3 changed files with 14 additions and 4 deletions

View File

@ -1,9 +1,13 @@
Next Release
0.2
- Added a new "disassemble" command to the monitor. It can disassemble
any range of memory (e.g. "disassemble c000:c0010"). If labels have been
any range of memory ("disassemble c000:c010"). If labels have been
defined, the disassembly will show them in the operands.
- Added a new "assemble" command to the monitor. It can assemble a
single instruction at an address ("assemble c000 jsr $ffd2").
Labels in the operands are also supported ("assemble c000 jsr charout").
- Moved the character I/O area from $E000 to $F000 for compatibility with
the EhBASIC binary saved from Michal Kowalski's Windows-based simulator.
In a future version of Py65, the I/O area will be configurable.

View File

@ -4,3 +4,9 @@ Instructions needing unit tests:
cpx
cpy
sbc
Better error messages when assembling fails.
Ability to assemble more than one instruction at a time.
Windows support for non-blocking character input.

View File

@ -1 +1 @@
0.1
0.2