From 420bbc2c4c299c037d8801b997aa035018fc1a3d Mon Sep 17 00:00:00 2001 From: goyuken Date: Mon, 17 Feb 2014 18:02:21 +0000 Subject: [PATCH] NES: pedantic more correct emulation of Fantasy Zone (J). of no interest to anyone. --- .../BizHawk.Emulation.Cores.csproj | 1 + .../Nintendo/NES/Boards/Sunsoft1_Alt.cs | 53 +++++++++++++++++++ .../Nintendo/NES/Boards/Sunsoft2_m93.cs | 3 +- 3 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1_Alt.cs diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index 33a762a693..7d73dd6f08 100644 --- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -367,6 +367,7 @@ + diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1_Alt.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1_Alt.cs new file mode 100644 index 0000000000..09b48a0ed2 --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1_Alt.cs @@ -0,0 +1,53 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace BizHawk.Emulation.Cores.Nintendo.NES +{ + /* + * Fantasy Zone (J, NOT TENGEN) + * It uses its own one-off PCB that rewires the SUNSOFT-1 chip to provide + * PRG control instead of CHR control. To confuse matters, the game makes + * a second set of compatibility writes to a different set of registers to + * make it run on "Mapper 93" (they were perhaps anticipating putting the + * mask roms on a different board?? + * + * In any event, here is how it's actually emulated. + */ + + public sealed class Sunsoft1_Alt : NES.NESBoardBase + { + int prg; + + public override bool Configure(NES.EDetectionOrigin origin) + { + if (Cart.board_type != "SUNSOFT-1" || Cart.pcb != "SUNSOFT-4") + return false; + + AssertChr(0); AssertVram(8); AssertWram(0); AssertPrg(128); + SetMirrorType(Cart.pad_h, Cart.pad_v); + return true; + } + + public override void WriteWRAM(int addr, byte value) + { + prg = value & 7; + } + + public override byte ReadPRG(int addr) + { + if (addr >= 0x4000) + return ROM[addr & 0x3fff | 7 << 14]; + else + return ROM[addr & 0x3fff | prg << 14]; + } + + public override void SyncState(BizHawk.Common.Serializer ser) + { + base.SyncState(ser); + ser.Sync("prg", ref prg); + } + + } +} diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft2_m93.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft2_m93.cs index b913fc90d5..08aaa0f9b5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft2_m93.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft2_m93.cs @@ -4,7 +4,6 @@ using BizHawk.Common; namespace BizHawk.Emulation.Cores.Nintendo.NES { //game=shanghai ; chip=sunsoft-2 ; pcb=SUNSOFT-3R - //game=fantasy zone ; chip=sunsoft-1 ; pcb = SUNSOFT-4 //this is confusing. see docs/sunsoft.txt public sealed class Sunsoft2_Mapper93 : NES.NESBoardBase { @@ -23,7 +22,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES break; case "SUNSOFT-1": if (Cart.pcb != "SUNSOFT-4") return false; - break; + return false; // this has been moved to Sunsoft1_Alt default: return false; }