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

13 lines
279 B
C#
Raw Normal View History

2024-07-24 15:03:33 +08:00
namespace MyNes.Core
{
[BoardInfo("Unknown", 140)]
internal class Mapper140 : Board
{
internal override void WriteSRM(ref ushort address, ref byte data)
{
Switch08KCHR(data & 0xF);
Switch32KPRG((data >> 4) & 3, PRGArea.Area8000);
}
}
}