From 7a067a4ab9903766796f46b3eb1f14cdb7d2a7ef Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Wed, 19 Nov 2008 18:26:23 +0000 Subject: [PATCH] Added CHANGES.txt file. --- CHANGES.txt | 25 +++++++++++++++++++++++++ setup.py | 1 + 2 files changed, 26 insertions(+) create mode 100644 CHANGES.txt diff --git a/CHANGES.txt b/CHANGES.txt new file mode 100644 index 0000000..2edff27 --- /dev/null +++ b/CHANGES.txt @@ -0,0 +1,25 @@ +Next Release + + - Added a new "disassemble" command to the monitor. It can disassemble + any range of memory (e.g. "disassemble c000:c0010"). If labels have been + defined, the disassembly will show them in the operands. + + - 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. + + - When running a program in the monitor, a read to $F004 will now do a + non-blocking read from STDIN. If no character is available, a null + byte ($00) will be returned. + + - Fixed a bug where a CMP instruction could crash the simulator due to + an undefined variable. + + - EhBASIC 2.09 now runs in the simulator! + + - Documented all remaining monitor commands. In the monitor, use the + command "help command" for help on any command. + +0.1 + + - First release. diff --git a/setup.py b/setup.py index 826c36b..f1f2115 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ dist = setup( packages = find_packages(os.path.join(here, 'src')), # put data files in egg 'doc' dir data_files=[ ('doc', [ + 'CHANGES.txt', 'README.txt', 'TODO.txt', ]