From 88707872321c4a815bad0e339ef522c3f8fc1a1d Mon Sep 17 00:00:00 2001 From: tomch Date: Sat, 11 Aug 2012 21:48:36 +0000 Subject: [PATCH] Updated History.txt to document fix for Mabel's Mansion too. --- AppleWin/docs/History.txt | 4 +++- AppleWin/source/Debugger/Debug.cpp | 4 +--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AppleWin/docs/History.txt b/AppleWin/docs/History.txt index ab022b90..8c01f146 100644 --- a/AppleWin/docs/History.txt +++ b/AppleWin/docs/History.txt @@ -25,7 +25,9 @@ Changes: . [Feature #4399] Allow Z80 SoftCard to be inserted into slot 4 or 5. (Allows CP/M v3 to work) Fixes: -. Floating bus not returned for empty slot $Cnxx addresses (Fix for A2VGA.DSK: Apple][VGA card detection). +. Floating bus not returned for empty slot $Cnxx addresses. Fixes: + - A2VGA.DSK: Apple][VGA card detection. + - [Bug #018643] Mabel's Mansion. 1.20.1 - 17 Jul 2011 diff --git a/AppleWin/source/Debugger/Debug.cpp b/AppleWin/source/Debugger/Debug.cpp index 7b1e18ac..666914b3 100644 --- a/AppleWin/source/Debugger/Debug.cpp +++ b/AppleWin/source/Debugger/Debug.cpp @@ -2028,8 +2028,7 @@ Update_t CmdIn (int nArgs) WORD nAddress = g_aArgs[1].nValue; - BYTE nPageOffset = nAddress & 0xFF; - IORead[ (nAddress>>4) & 0xF ](regs.pc, nAddress & 0xFF, 0, 0, 0); // g_aArgs[1].nValue + IORead[ (nAddress>>4) & 0xF ](regs.pc, nAddress & 0xFF, 0, 0, 0); // g_aArgs[1].nValue return UPDATE_CONSOLE_DISPLAY; // TODO: Verify // 1 } @@ -2090,7 +2089,6 @@ Update_t CmdOut (int nArgs) WORD nAddress = g_aArgs[1].nValue; - BYTE nPageOffset = nAddress & 0xFF; IOWrite[ (nAddress>>4) & 0xF ] (regs.pc, nAddress & 0xFF, 1, g_aArgs[2].nValue & 0xFF, 0); return UPDATE_CONSOLE_DISPLAY; // TODO: Verify // 1