mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-11 05:29:55 +00:00
Updated History.txt to document fix for Mabel's Mansion too.
This commit is contained in:
parent
a7edc342af
commit
8870787232
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user