From b2db264eed99d71192ea337050403b62c8943f45 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 17 Oct 2012 16:48:28 +0000 Subject: [PATCH] nes: unif mapper "BMC-NovelDiamond9999999in1". possibly also INES mapper 54, but i've only seen this game in unif form. One game: "Multi-Game Pirate Carts.7z|Novel Diamond 999999-in-1 [U][p1][!].unf" --- BizHawk.Emulation/BizHawk.Emulation.csproj | 1 + .../Nintendo/NES/Boards/NovelDiamond.cs | 55 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 BizHawk.Emulation/Consoles/Nintendo/NES/Boards/NovelDiamond.cs diff --git a/BizHawk.Emulation/BizHawk.Emulation.csproj b/BizHawk.Emulation/BizHawk.Emulation.csproj index bb14fa5698..b4c662b3e3 100644 --- a/BizHawk.Emulation/BizHawk.Emulation.csproj +++ b/BizHawk.Emulation/BizHawk.Emulation.csproj @@ -237,6 +237,7 @@ + Code diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/NovelDiamond.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/NovelDiamond.cs new file mode 100644 index 0000000000..94c3974756 --- /dev/null +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/NovelDiamond.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace BizHawk.Emulation.Consoles.Nintendo +{ + public class NovelDiamond : NES.NESBoardBase + { + int prg; + int chr; + + public override bool Configure(NES.EDetectionOrigin origin) + { + switch (Cart.board_type) + { + case "MAPPER054": // ?? + case "UNIF_BMC-NovelDiamond9999999in1": // works + break; + default: + return false; + } + AssertPrg(128); + AssertChr(64); + SetMirrorType(Cart.pad_h, Cart.pad_v); + return true; + } + + public override byte ReadPPU(int addr) + { + if (addr < 0x2000) + return VROM[addr | chr << 13]; + else + return base.ReadPPU(addr); + } + + public override byte ReadPRG(int addr) + { + return ROM[addr | prg << 15]; + } + + public override void WritePRG(int addr, byte value) + { + prg = addr & 3; + chr = addr & 7; + } + + public override void SyncState(Serializer ser) + { + base.SyncState(ser); + ser.Sync("prg", ref prg); + ser.Sync("chr", ref chr); + } + } +}