BizHawk/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/m4K.cs

20 lines
354 B
C#

namespace BizHawk.Emulation.Cores.Atari.Atari2600
{
internal class m4K : MapperBase
{
public override byte ReadMemory(ushort addr)
{
if (addr < 0x1000)
{
return base.ReadMemory(addr);
}
return Core.Rom[addr & 0xFFF];
}
public override byte PeekMemory(ushort addr)
{
return ReadMemory(addr);
}
}
}