From 2a9fbf0f24a566fc80bc3f5a02833c084c8dd937 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Wed, 28 May 2014 20:53:27 +0200 Subject: [PATCH] Disconnect the bank byte from WRAM. It shouldn't be there. --- memmap.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/memmap.cpp b/memmap.cpp index 6cf4d936..d3684d94 100644 --- a/memmap.cpp +++ b/memmap.cpp @@ -2907,6 +2907,7 @@ void CMemory::map_space (uint32 bank_s, uint32 bank_e, uint32 addr_s, uint32 add desc.ptr=data; desc.start=bank_s<<16 | addr_s; desc.select=(bank_s<<16 | addr_s) ^ (bank_e<<16 | addr_e) ^ 0xFFFFFF; + desc.disconnect=0xFF0000; S9xAppendMapping(&desc); } #endif