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

13 lines
295 B
C#
Raw Permalink Normal View History

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