mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-10 13:29:56 +00:00
Fixed typo & inconsistency in $C070 write statement
This commit is contained in:
parent
adcfb9ef3d
commit
4db23c10dc
@ -13,7 +13,7 @@ Tom Charlesworth
|
|||||||
---------------------
|
---------------------
|
||||||
. [Change #631] Improvements for the RGB AppleColor card:
|
. [Change #631] Improvements for the RGB AppleColor card:
|
||||||
- Relax the video-mode precondition to just ignore if VF_MIXED (previously required HIRES on) for Apple II Desktop.
|
- Relax the video-mode precondition to just ignore if VF_MIXED (previously required HIRES on) for Apple II Desktop.
|
||||||
- Changing from DHGR B&W mode to HGR remains in B&W (color burst if off).
|
- Changing from DHGR B&W mode to HGR remains in B&W (color burst is off).
|
||||||
- For '50% scan lines', don't blend in NTSC B&W mode, as this was inconsistent with the RGB colour rendering.
|
- For '50% scan lines', don't blend in NTSC B&W mode, as this was inconsistent with the RGB colour rendering.
|
||||||
. [Change #633] Improvements for the RGB AppleColor card:
|
. [Change #633] Improvements for the RGB AppleColor card:
|
||||||
- Improved the video-mode precondition to ignore if 80COL ($C00C/D) occurs before DHIRESON ($C05F) for Renegade.
|
- Improved the video-mode precondition to ignore if 80COL ($C00C/D) occurs before DHIRESON ($C05F) for Renegade.
|
||||||
|
@ -587,7 +587,7 @@ static BYTE __stdcall IOWrite_C07x(WORD pc, WORD addr, BYTE bWrite, BYTE d, ULON
|
|||||||
|
|
||||||
switch (addr & 0xf)
|
switch (addr & 0xf)
|
||||||
{
|
{
|
||||||
case 0x0: break;
|
case 0x0: return IO_Null(pc, addr, bWrite, d, nExecutedCycles);
|
||||||
#ifdef RAMWORKS
|
#ifdef RAMWORKS
|
||||||
case 0x1: return MemSetPaging(pc, addr, bWrite, d, nExecutedCycles); // extended memory card set page
|
case 0x1: return MemSetPaging(pc, addr, bWrite, d, nExecutedCycles); // extended memory card set page
|
||||||
case 0x2: return IO_Null(pc, addr, bWrite, d, nExecutedCycles);
|
case 0x2: return IO_Null(pc, addr, bWrite, d, nExecutedCycles);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user