From 26414b74df3b574dcc1a1a1f8507d8fe9c5a6bb9 Mon Sep 17 00:00:00 2001 From: tomcw Date: Sun, 18 Apr 2021 11:23:06 +0100 Subject: [PATCH] Fix for a2audit failing Apple II/II+ LC test . For II/II+ with NSC at F8xx, then (for NSC) also exclude the r:ROM/w:RAM (C089) case --- source/Memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Memory.cpp b/source/Memory.cpp index b192531b..9f1556af 100644 --- a/source/Memory.cpp +++ b/source/Memory.cpp @@ -914,7 +914,7 @@ static BYTE __stdcall IO_Cxxx(WORD programcounter, WORD address, BYTE write, BYT BYTE __stdcall IO_F8xx(WORD programcounter, WORD address, BYTE write, BYTE value, ULONG nCycles) // NSC for Apple II/II+ (GH#827) { - if (IS_APPLE2 && g_NoSlotClock && !SW_HIGHRAM) + if (IS_APPLE2 && g_NoSlotClock && !SW_HIGHRAM && !SW_WRITERAM) { if (g_NoSlotClock->ReadWrite(address, value, write)) return value;