AxibugEmuOnline/OtherCore/MyNes.Standard2/MyNes.Core/Mapper086.cs

16 lines
357 B
C#
Raw Normal View History

2024-07-24 15:03:33 +08:00
namespace MyNes.Core
{
[BoardInfo("Jaleco Early Mapper 2", 86)]
internal class Mapper086 : Board
{
internal override void WriteSRM(ref ushort address, ref byte data)
{
if (address < 28672)
{
Switch32KPRG((data >> 4) & 3, PRGArea.Area8000);
Switch08KCHR((data & 7) | ((data >> 4) & 4));
}
}
}
}