From 424f312afa1a431d891c905fcc597a42cacba5d7 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 23 May 2014 00:29:31 +0000 Subject: [PATCH] Atari 2600 - from now on, practice safe poking. Also poking is now possible on the system bus. --- .../Consoles/Atari/2600/Atari2600.Core.cs | 22 +++++++++++ .../Consoles/Atari/2600/Atari2600.cs | 2 +- .../Consoles/Atari/2600/Mappers/MapperBase.cs | 5 +++ .../Atari/2600/Mappers/Multicart8K.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/m0840.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/m3E.cs | 37 +++++++++++++------ .../Consoles/Atari/2600/Mappers/m3F.cs | 29 +++++++++++---- .../Consoles/Atari/2600/Mappers/m4A50.cs | 26 ++++++++++--- .../Consoles/Atari/2600/Mappers/mAR.cs | 1 + .../Consoles/Atari/2600/Mappers/mCM.cs | 1 + .../Consoles/Atari/2600/Mappers/mCV.cs | 12 +++++- .../Consoles/Atari/2600/Mappers/mDPC.cs | 20 ++++++++-- .../Consoles/Atari/2600/Mappers/mDPCPlus.cs | 1 + .../Consoles/Atari/2600/Mappers/mE0.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mE7.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mEF.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mEFSC.cs | 17 ++++++++- .../Consoles/Atari/2600/Mappers/mF0.cs | 16 ++++++-- .../Consoles/Atari/2600/Mappers/mF4.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mF4SC.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mF6.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mF6SC.cs | 17 ++++++++- .../Consoles/Atari/2600/Mappers/mF8.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mF8SC.cs | 17 ++++++++- .../Consoles/Atari/2600/Mappers/mFA.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mFA2.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mSB.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mUA.cs | 18 ++++++++- .../Consoles/Atari/2600/Mappers/mX07.cs | 18 ++++++++- 29 files changed, 407 insertions(+), 68 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs index 180f2e825c..8889530626 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs @@ -77,6 +77,23 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public void BasePokeMemory(ushort addr, byte value) + { + addr = (ushort)(addr & 0x1FFF); + if ((addr & 0x1080) == 0) + { + _tia.WriteMemory(addr, value); + } + else if ((addr & 0x1080) == 0x0080) + { + M6532.WriteMemory(addr, value); + } + else + { + Console.WriteLine("ROM write(?): " + addr.ToString("x")); + } + } + public byte ReadMemory(ushort addr) { if (addr != LastAddress) @@ -112,6 +129,11 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 CoreComm.MemoryCallbackSystem.CallWrite(addr); } + public void PokeMemory(ushort addr, byte value) + { + _mapper.PokeMemory((ushort)(addr & 0x1FFF), value); + } + public void ExecFetch(ushort addr) { CoreComm.MemoryCallbackSystem.CallExecute(addr); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs index 09e362f291..ff81f3836c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs @@ -53,7 +53,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 8192, MemoryDomain.Endian.Little, addr => _mapper.PeekMemory((ushort) addr), - (addr, value) => { }) + (addr, value) => _mapper.PokeMemory((ushort) addr, value)) }; CoreComm.CpuTraceAvailable = true; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs index 4108a34c07..bfd2820af8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs @@ -31,6 +31,11 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 Core.BaseWriteMemory(addr, value); } + public virtual void PokeMemory(ushort addr, byte value) + { + Core.BasePokeMemory(addr, value); + } + public virtual void SyncState(Serializer ser) { } public virtual void Dispose() { } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/Multicart8K.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/Multicart8K.cs index 128b80dbc7..69f948e301 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/Multicart8K.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/Multicart8K.cs @@ -67,15 +67,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF8) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m0840.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m0840.cs index 5e60445ba3..e6ae90984d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m0840.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m0840.cs @@ -62,15 +62,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { switch (addr & 0x1840) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3E.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3E.cs index 6d79c23516..db3a8ac93a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3E.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3E.cs @@ -96,23 +96,26 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMemory(addr); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - if (addr == 0x003E) + if (!poke) { - _hasRam = true; - _rambank1K = value; - } - else if (addr == 0x003F) - { - _hasRam = false; - if ((value << 11) < Core.Rom.Length) + if (addr == 0x003E) { - _lowbank2K = value; + _hasRam = true; + _rambank1K = value; } - else + else if (addr == 0x003F) { - _lowbank2K = value & (Core.Rom.Length >> 11); + _hasRam = false; + if ((value << 11) < Core.Rom.Length) + { + _lowbank2K = value; + } + else + { + _lowbank2K = value & (Core.Rom.Length >> 11); + } } } @@ -129,5 +132,15 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 _ram[(_rambank1K << 10) + (addr & 0x3FF)] = value; } } + + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3F.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3F.cs index 9454c68743..bc23b12875 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3F.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m3F.cs @@ -62,21 +62,34 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMemory(addr); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - if (addr < 0x0040) + if (!poke) { - if ((value << 11) < Core.Rom.Length) + if (addr < 0x0040) { - _lowbank2K = value; - } - else - { - _lowbank2K = value & (Core.Rom.Length >> 11); + if ((value << 11) < Core.Rom.Length) + { + _lowbank2K = value; + } + else + { + _lowbank2K = value & (Core.Rom.Length >> 11); + } } } base.WriteMemory(addr, value); } + + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m4A50.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m4A50.cs index 65b53130fc..23e278fc1a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m4A50.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m4A50.cs @@ -192,12 +192,15 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { if (addr < 0x1000) // Hotspots below 0x1000 { base.WriteMemory(addr, value); - CheckBankSwitch(addr, value); + if (!poke) + { + CheckBankSwitch(addr, value); + } } else if (addr < 0x1800) // 2K region at 0x1000 - 0x17ff { @@ -220,7 +223,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 _ram[(addr & 0xff) + _sliceHigh] = value; } } - else if (addr < 0x2000) // 256B region at 0x1f00 - 0x1fff + else if (addr < 0x2000 && !poke) // 256B region at 0x1f00 - 0x1fff { if (((_lastData & 0xe0) == 0x60) && ((_lastAddress >= 0x1000) || (_lastAddress < 0x200))) @@ -230,8 +233,21 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } - _lastData = value; - _lastAddress = (ushort)(addr & 0x1fff); + if (!poke) + { + _lastData = value; + _lastAddress = (ushort)(addr & 0x1fff); + } + } + + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); } private void CheckBankSwitch(ushort address, byte value) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mAR.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mAR.cs index 508290c0e9..facbad54f6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mAR.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mAR.cs @@ -38,6 +38,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 // TODO: can we set the defaults instead of do it in the constructor? // TODO: fastscbios setting // TODO: var names, savestates, hard reset, dispose, cart ram + // TOOD: pokeMem public mAR(Atari2600 core) { // TODO: clean this stuff up diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCM.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCM.cs index 13fd401b73..fc36afae3b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCM.cs @@ -176,6 +176,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 */ internal class mCM : MapperBase { + // TODO: PokeMem private ByteBuffer _ram = new ByteBuffer(2048); private int _bank4K = 3; // On Start up, controller port is all 1's, so start on the last bank, flags enabled private bool _disableRam = true; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCV.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCV.cs index ee7170fefd..ee312005b9 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCV.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mCV.cs @@ -73,7 +73,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMemory(addr); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { if (addr < 0x1000) { @@ -84,5 +84,15 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 _ram[(addr & 0x3FF)] = value; } } + + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPC.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPC.cs index b4ba3a3484..f3e0319096 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPC.cs @@ -406,7 +406,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { if (addr < 0x1000) { @@ -414,8 +414,10 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return; } - Address(addr); - ClockRandomNumberGenerator(); + if (poke) + { + return; + } if (addr >= 0x1040 && addr < 0x1080) { @@ -463,7 +465,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 if (index >= 5) { _musicModes[index - 5] = (value & 0x10) > 0; - + // NOTE: We are not handling the clock source input for // the music mode data fetchers. We're going to assume // they always use the OSC input. @@ -479,6 +481,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF8) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPCPlus.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPCPlus.cs index 73294b5023..799f9e99d0 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPCPlus.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mDPCPlus.cs @@ -11,6 +11,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 */ internal class mDPCPlus : MapperBase { + // TODO: PokeMem, and everything else public mDPCPlus() { throw new NotImplementedException(); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE0.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE0.cs index bc95c61ae9..3e79c1bedb 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE0.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE0.cs @@ -85,15 +85,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { switch (addr) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE7.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE7.cs index 70c136addb..3fb8f14703 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE7.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mE7.cs @@ -129,9 +129,13 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); @@ -146,6 +150,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { _enableRam0 = false; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEF.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEF.cs index ae1b7db998..8edd72cf65 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEF.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEF.cs @@ -53,15 +53,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FE0) _toggle = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEFSC.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEFSC.cs index d34f0b26de..6e6fbe7355 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEFSC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mEFSC.cs @@ -77,9 +77,12 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } if (addr < 0x1000) { @@ -91,6 +94,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FE0) _bank4k = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF0.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF0.cs index fbcfa8cbb9..a46bb897be 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF0.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF0.cs @@ -61,19 +61,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 { return ReadMem(addr, true); } - - public override void WriteMemory(ushort addr, byte value) + + private void WriteMem(ushort addr, byte value, bool poke) { if (addr < 0x1000) { base.WriteMemory(addr, value); } - else if (addr == 0x1ff0) + else if (addr == 0x1ff0 && !poke) { Increment(); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Increment() { _bank++; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4.cs index 05b7b62aa1..22d395cf16 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4.cs @@ -51,15 +51,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF4) _toggle = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4SC.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4SC.cs index 3a8f468897..1c7928ffe8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4SC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF4SC.cs @@ -76,9 +76,13 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); @@ -89,6 +93,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF4) _bank4k = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6.cs index b4fa254170..4206b25ca5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6.cs @@ -52,15 +52,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF6) _toggle = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6SC.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6SC.cs index 174fe16ccf..666971f2c0 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6SC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF6SC.cs @@ -76,9 +76,12 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } if (addr < 0x1000) { @@ -90,6 +93,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF6) _bank4k = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8.cs index 075a579682..45643c6650 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8.cs @@ -60,15 +60,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF8) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8SC.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8SC.cs index df8dffad22..7d2bb4ed49 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8SC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mF8SC.cs @@ -63,9 +63,12 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } if (addr < 0x1000) { @@ -77,6 +80,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + public override void SyncState(Serializer ser) { base.SyncState(ser); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs index 34a8d7322b..4fecdd9578 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs @@ -74,9 +74,13 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); @@ -87,6 +91,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF8) _toggle = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA2.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA2.cs index ec1ad63d41..8022f94a32 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA2.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA2.cs @@ -78,9 +78,13 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); @@ -91,6 +95,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x1FF5) _bank4k = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mSB.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mSB.cs index 67dca13877..3c25e593dc 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mSB.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mSB.cs @@ -50,15 +50,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { var temp = addr & (0x17FF + (Core.Rom.Length >> 12)); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mUA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mUA.cs index 480cd8bfeb..75e9c372ea 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mUA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mUA.cs @@ -53,15 +53,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if (addr == 0x0220) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mX07.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mX07.cs index a73b7f1f1d..895a8082e9 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mX07.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mX07.cs @@ -74,15 +74,29 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 return ReadMem(addr, true); } - public override void WriteMemory(ushort addr, byte value) + private void WriteMem(ushort addr, byte value, bool poke) { - Address(addr); + if (!poke) + { + Address(addr); + } + if (addr < 0x1000) { base.WriteMemory(addr, value); } } + public override void WriteMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: false); + } + + public override void PokeMemory(ushort addr, byte value) + { + WriteMem(addr, value, poke: true); + } + private void Address(ushort addr) { if ((addr & 0x180F) == 0x080D)