From acc9806d554af267a4d551eac2c08f441eef3a45 Mon Sep 17 00:00:00 2001 From: goyuken Date: Tue, 30 Oct 2012 22:14:31 +0000 Subject: [PATCH] 2600: add fake mDPC.cs to fix compile. --- .../Consoles/Atari/2600/Mappers/mDPC.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 BizHawk.Emulation/Consoles/Atari/2600/Mappers/mDPC.cs diff --git a/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mDPC.cs b/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mDPC.cs new file mode 100644 index 0000000000..d46f5fc129 --- /dev/null +++ b/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mDPC.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace BizHawk.Emulation.Consoles.Atari._2600 +{ + partial class Atari2600 + { + class mDPC : MapperBase + { + public override byte ReadMemory(ushort addr) + { + if (addr < 0x1000) return base.ReadMemory(addr); + return core.rom[addr & 0x7FF]; + } + } + } +}