From a1cb4b151efe73081ff3cb9db71dc36fd8c7752a Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 12 Apr 2014 03:48:18 +0000 Subject: [PATCH] Atari 2600 - implement mapper FE --- .../Consoles/Atari/2600/Atari2600.Core.cs | 2 +- .../Consoles/Atari/2600/Mappers/MapperBase.cs | 2 ++ .../Consoles/Atari/2600/Mappers/mFE.cs | 12 ++++++++---- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs index 4349400f78..edd482fbc5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs @@ -68,8 +68,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public byte ReadMemory(ushort addr) { + _mapper.Bit13 = addr.Bit(13); var temp = _mapper.ReadMemory((ushort)(addr & 0x1FFF)); - CoreComm.MemoryCallbackSystem.CallRead(addr); return temp; diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs index 3a513724e0..4108a34c07 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/MapperBase.cs @@ -39,5 +39,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public virtual void HardReset() { } + // THis is here purely for mapper 3E because it needs the 13th bit to determine bankswitching (but only receives the first 12 on read memory) + public bool Bit13 { get; set; } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFE.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFE.cs index fa88f47b41..715fdfaadd 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFE.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFE.cs @@ -1,4 +1,4 @@ -using System; +using BizHawk.Common; namespace BizHawk.Emulation.Cores.Atari.Atari2600 { @@ -56,12 +56,16 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 Using emulators or similar there is a large cheat that can be used. A13 can be used to simply select which 8K bank to be in. */ - internal class mFE : MapperBase { - public mFE() + public override byte ReadMemory(ushort addr) { - throw new NotImplementedException(); + if (addr < 0x1000) + { + return base.ReadMemory(addr); + } + + return Core.Rom[(addr & 0x0FFF) + (Bit13 ? 0 : 4096)]; } } }