BizHawk/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mDPC.cs

20 lines
342 B
C#
Raw Normal View History

2012-10-30 22:14:31 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2012-10-30 22:41:56 +00:00
namespace BizHawk
2012-10-30 22:14:31 +00:00
{
partial class Atari2600
{
class mDPC : MapperBase
{
public override byte ReadMemory(ushort addr)
{
if (addr < 0x1000) return base.ReadMemory(addr);
return core.rom[addr & 0x7FF];
}
}
}
}