From d5cf2d1de29e38684b436991e9da7bec4b9e0666 Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Thu, 28 Aug 2014 16:55:16 -0700 Subject: [PATCH] Debugger 2.8.0.0 AppleWin 1.25 --- bin/History.txt | 3 +-- docs/Debugger_Changelog.txt | 3 +++ source/Debugger/Debug.cpp | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/bin/History.txt b/bin/History.txt index 68a291df..110821ca 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -49,13 +49,12 @@ Changes: using uninitialized memory. RNDL/RHND and $620B are initialized to allow Pooyan, and the Beautiful Boot game launcher to run, along with $BFFD..BFFF to allow Copy ][ v5 to boot correctly. -. Debugger (v2.7.0.29): +. Debugger (v2.8.0.0): - Added: TSAVE "filename" to save the text screen to a file. It will auto-detect the current video mode: 40/80 columns. Default filename for 40 columns is: AppleWin_Text40.txt Default filename for 80 columns is: AppleWin_Text80.txt - Changed: DS to ASC because DS is used as a common "Define Space" assembler directive - - Added: Experimental "ASC" command to mark up data as Apple text. using Castle Wolfenstien.DSK BLOAD ^VOCAB diff --git a/docs/Debugger_Changelog.txt b/docs/Debugger_Changelog.txt index 69618169..ffc6f1a5 100644 --- a/docs/Debugger_Changelog.txt +++ b/docs/Debugger_Changelog.txt @@ -1,5 +1,8 @@ /* +2.8.0.0 Released with AppleWin 1.25 + 2.7.0.# +.30 Fixed: ASC overflowing sOpCodes in FormatOpcodeBytes() .29 Added: Help for DB and DW .28 Added: ASC so it disassemblies intertwined code and data correctly. Example: diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index 6b400cb3..f39dce33 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -47,7 +47,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define ALLOW_INPUT_LOWERCASE 1 // See /docs/Debugger_Changelog.txt for full details - const int DEBUGGER_VERSION = MAKE_VERSION(2,7,0,29); + const int DEBUGGER_VERSION = MAKE_VERSION(2,8,0,0); // Public _________________________________________________________________________________________