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

13 lines
341 B
C#
Raw Normal View History

2024-07-24 15:03:33 +08:00
namespace MyNes.Core
{
[BoardInfo("Unknown", 242)]
internal class Mapper242 : Board
{
internal override void WritePRG(ref ushort address, ref byte data)
{
Switch32KPRG((address >> 3) & 0xF, PRGArea.Area8000);
Switch01KNMTFromMirroring(((address & 2) == 2) ? Mirroring.Horz : Mirroring.Vert);
}
}
}