2600: add fake mDPC.cs to fix compile.

This commit is contained in:
goyuken 2012-10-30 22:14:31 +00:00
parent 8313c103f6
commit acc9806d55
1 changed files with 19 additions and 0 deletions

View File

@ -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];
}
}
}
}