diff --git a/src/emucore/Cart3E.cxx b/src/emucore/Cart3E.cxx index 15084b53e..3f2b1263f 100644 --- a/src/emucore/Cart3E.cxx +++ b/src/emucore/Cart3E.cxx @@ -115,6 +115,9 @@ bool Cartridge3E::poke(uInt16 address, uInt8 value) } else { + if (myCurrentBank < 256) + return false; + if(address & 0x0400) { pokeRAM(myRAM[(address & 0x03FF) + ((myCurrentBank - 256) << 10)], pokeAddress, value);