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

13 lines
274 B
C#
Raw Normal View History

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