diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index 9d899f7fb8..ccf34ff6f4 100644 --- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -682,9 +682,11 @@ + + diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper219.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper219.cs new file mode 100644 index 0000000000..787c1df77f --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper219.cs @@ -0,0 +1,19 @@ +namespace BizHawk.Emulation.Cores.Nintendo.NES +{ + public sealed class Mapper219 : MMC3Board_Base + { + public override bool Configure(NES.EDetectionOrigin origin) + { + switch (Cart.board_type) + { + case "MAPPER219": + break; + default: + return false; + } + + BaseSetup(); + return true; + } + } +} diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper254.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper254.cs new file mode 100644 index 0000000000..b84701d568 --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper254.cs @@ -0,0 +1,51 @@ +using BizHawk.Common; + +namespace BizHawk.Emulation.Cores.Nintendo.NES +{ + public sealed class Mapper254 : MMC3Board_Base + { + private ByteBuffer regs = new ByteBuffer(2); + + public override bool Configure(NES.EDetectionOrigin origin) + { + switch (Cart.board_type) + { + case "MAPPER254": + break; + default: + return false; + } + + BaseSetup(); + + return true; + } + + public override byte ReadWRAM(int addr) + { + if (regs[0] > 0) + { + return WRAM[addr]; + } + else + { + return (byte)(WRAM[addr] ^ regs[1]); + } + } + + public override void WritePRG(int addr, byte value) + { + switch (addr) + { + case 0x0000: + regs[0] = 0xff; + break; + case 0x2001: + regs[1] = value; + break; + } + + base.WritePRG(addr, value); + } + } +}