From 77857f0e51bea2e078e9e900cc0f48aa5ec2018e Mon Sep 17 00:00:00 2001 From: beirich Date: Sat, 22 Mar 2014 04:46:01 +0000 Subject: [PATCH] Convert SMS, Coleco, and TI83 to zeromus Serializer-class savestates --- BizHawk.Emulation.Common/Sound/SN76489.cs | 251 ++------------- BizHawk.Emulation.Common/Sound/YM2413.cs | 11 +- BizHawk.Emulation.Cores/CPUs/Z80/Z80A.cs | 183 ++--------- BizHawk.Emulation.Cores/Calculator/TI83.cs | 220 ++++++------- .../Consoles/Coleco/ColecoVision.cs | 187 +++++------- .../Consoles/Coleco/Input.cs | 23 +- .../Consoles/Coleco/TMS9918A.cs | 89 +----- .../Consoles/Sega/Genesis/Genesis.cs | 8 +- .../Consoles/Sega/SMS/Compat.txt | 11 +- .../Consoles/Sega/SMS/MemoryMap.Sega.cs | 21 +- .../Consoles/Sega/SMS/SMS.cs | 277 ++++++----------- .../Consoles/Sega/SMS/VDP.cs | 139 ++------- output/gamedb/gamedb_sega_gg.txt | 288 +++++++++--------- 13 files changed, 537 insertions(+), 1171 deletions(-) diff --git a/BizHawk.Emulation.Common/Sound/SN76489.cs b/BizHawk.Emulation.Common/Sound/SN76489.cs index 067e5731ec..81aad04fb7 100644 --- a/BizHawk.Emulation.Common/Sound/SN76489.cs +++ b/BizHawk.Emulation.Common/Sound/SN76489.cs @@ -2,14 +2,10 @@ using System.Collections.Generic; using System.Globalization; using System.IO; - -// TODO the freq->note translation should be moved to a separate utility class. +using BizHawk.Common; namespace BizHawk.Emulation.Common.Components { - /// - /// Emulates a Texas Instruments SN76489 - /// public sealed class SN76489 : ISoundProvider { public sealed class Channel @@ -175,252 +171,59 @@ namespace BizHawk.Emulation.Common.Components } } + byte stereoPanning = 0xFF; public byte StereoPanning { get { byte value = 0; - if (Channels[0].Left) value |= 0x10; + if (Channels[0].Left) value |= 0x10; if (Channels[0].Right) value |= 0x01; - if (Channels[1].Left) value |= 0x20; + if (Channels[1].Left) value |= 0x20; if (Channels[1].Right) value |= 0x02; - if (Channels[2].Left) value |= 0x40; + if (Channels[2].Left) value |= 0x40; if (Channels[2].Right) value |= 0x04; - if (Channels[3].Left) value |= 0x80; + if (Channels[3].Left) value |= 0x80; if (Channels[3].Right) value |= 0x08; return value; } set { - Channels[0].Left = (value & 0x10) != 0; + Channels[0].Left = (value & 0x10) != 0; Channels[0].Right = (value & 0x01) != 0; - Channels[1].Left = (value & 0x20) != 0; + Channels[1].Left = (value & 0x20) != 0; Channels[1].Right = (value & 0x02) != 0; - Channels[2].Left = (value & 0x40) != 0; + Channels[2].Left = (value & 0x40) != 0; Channels[2].Right = (value & 0x04) != 0; - Channels[3].Left = (value & 0x80) != 0; + Channels[3].Left = (value & 0x80) != 0; Channels[3].Right = (value & 0x08) != 0; + stereoPanning = value; } } - public void SaveStateText(TextWriter writer) + public void SyncState(Serializer ser) { - writer.WriteLine("[PSG]"); - writer.WriteLine("Volume0 {0:X2}", Channels[0].Volume); - writer.WriteLine("Volume1 {0:X2}", Channels[1].Volume); - writer.WriteLine("Volume2 {0:X2}", Channels[2].Volume); - writer.WriteLine("Volume3 {0:X2}", Channels[3].Volume); - writer.WriteLine("Freq0 {0:X4}", Channels[0].Frequency); - writer.WriteLine("Freq1 {0:X4}", Channels[1].Frequency); - writer.WriteLine("Freq2 {0:X4}", Channels[2].Frequency); - writer.WriteLine("Freq3 {0:X4}", Channels[3].Frequency); - writer.WriteLine("NoiseType {0:X}", Channels[3].NoiseType); - writer.WriteLine("PsgLatch {0:X2}", PsgLatch); - writer.WriteLine("Panning {0:X2}", StereoPanning); - writer.WriteLine("[/PSG]"); - writer.WriteLine(); + ser.BeginSection("PSG"); + ser.Sync("Volume0", ref Channels[0].Volume); + ser.Sync("Volume1", ref Channels[1].Volume); + ser.Sync("Volume2", ref Channels[2].Volume); + ser.Sync("Volume3", ref Channels[3].Volume); + ser.Sync("Freq0", ref Channels[0].Frequency); + ser.Sync("Freq1", ref Channels[1].Frequency); + ser.Sync("Freq2", ref Channels[2].Frequency); + ser.Sync("Freq3", ref Channels[3].Frequency); + ser.Sync("NoiseType", ref Channels[3].NoiseType); + ser.Sync("PsgLatch", ref PsgLatch); + ser.Sync("Panning", ref stereoPanning); + ser.EndSection(); } - public void LoadStateText(TextReader reader) + public void PostLoadState() { - while (true) - { - string[] args = reader.ReadLine().Split(' '); - if (args[0].Trim() == "") continue; - if (args[0] == "[/PSG]") break; - if (args[0] == "Volume0") - Channels[0].Volume = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Volume1") - Channels[1].Volume = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Volume2") - Channels[2].Volume = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Volume3") - Channels[3].Volume = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Freq0") - Channels[0].Frequency = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Freq1") - Channels[1].Frequency = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Freq2") - Channels[2].Frequency = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Freq3") - Channels[3].Frequency = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "NoiseType") - Channels[3].NoiseType = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "PsgLatch") - PsgLatch = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Panning") - StereoPanning = byte.Parse(args[1], NumberStyles.HexNumber); - - else - Console.WriteLine("Skipping unrecognized identifier " + args[0]); - } + StereoPanning = stereoPanning; UpdateNoiseType(Channels[3].NoiseType); } - public void SaveStateBinary(BinaryWriter writer) - { - writer.Write(Channels[0].Volume); - writer.Write(Channels[1].Volume); - writer.Write(Channels[2].Volume); - writer.Write(Channels[3].Volume); - writer.Write(Channels[0].Frequency); - writer.Write(Channels[1].Frequency); - writer.Write(Channels[2].Frequency); - writer.Write(Channels[3].Frequency); - writer.Write(Channels[3].NoiseType); - writer.Write(PsgLatch); - writer.Write(StereoPanning); - } - - public void LoadStateBinary(BinaryReader reader) - { - Channels[0].Volume = reader.ReadByte(); - Channels[1].Volume = reader.ReadByte(); - Channels[2].Volume = reader.ReadByte(); - Channels[3].Volume = reader.ReadByte(); - Channels[0].Frequency = reader.ReadUInt16(); - Channels[1].Frequency = reader.ReadUInt16(); - Channels[2].Frequency = reader.ReadUInt16(); - Channels[3].Frequency = reader.ReadUInt16(); - UpdateNoiseType(reader.ReadByte()); - PsgLatch = reader.ReadByte(); - StereoPanning = reader.ReadByte(); - } - - #region Frequency -> Note Conversion (for interested humans) - - public static string GetNote(int freq) - { - if (freq < 26) return "LOW"; - if (freq > 4435) return "HIGH"; - - for (int i = 0; i < frequencies.Length - 1; i++) - { - if (freq >= frequencies[i + 1]) continue; - int nextNoteDistance = frequencies[i + 1] - frequencies[i]; - int distance = freq - frequencies[i]; - if (distance < nextNoteDistance / 2) - { - // note identified - return notes[i]; - } - } - return "?"; - } - - // For the curious, A4 = 440hz. Every octave is a doubling, so A5=880, A3=220 - // Each next step is a factor of the 12-root of 2. So to go up a step you multiply by 1.0594630943592952645618252949463 - // Next step from A4 is A#4. A#4 = (440.00 * 1.05946...) = 466.163... - // Note that because frequencies must be integers, SMS games will be slightly out of pitch to a normally tuned instrument, especially at the low end. - - static readonly int[] frequencies = - { - 27, // A0 - 29, // A#0 - 31, // B0 - 33, // C1 - 35, // C#1 - 37, // D1 - 39, // D#1 - 41, // E1 - 44, // F1 - 46, // F#1 - 49, // G1 - 52, // G#1 - 55, // A1 - 58, // A#1 - 62, // B1 - 65, // C2 - 69, // C#2 - 73, // D2 - 78, // D#2 - 82, // E2 - 87, // F2 - 92, // F#2 - 98, // G2 - 104, // G#2 - 110, // A2 - 117, // A#2 - 123, // B2 - 131, // C3 - 139, // C#3 - 147, // D3 - 156, // D#3 - 165, // E3 - 175, // F3 - 185, // F#3 - 196, // G3 - 208, // G#3 - 220, // A3 - 233, // A#3 - 247, // B3 - 262, // C4 - 277, // C#4 - 294, // D4 - 311, // D#4 - 330, // E4 - 349, // F4 - 370, // F#4 - 392, // G4 - 415, // G#4 - 440, // A4 - 466, // A#4 - 494, // B4 - 523, // C5 - 554, // C#5 - 587, // D5 - 622, // D#5 - 659, // E5 - 698, // F5 - 740, // F#5 - 784, // G5 - 831, // G#5 - 880, // A5 - 932, // A#5 - 988, // B5 - 1046, // C6 - 1109, // C#6 - 1175, // D6 - 1245, // D#6 - 1319, // E6 - 1397, // F6 - 1480, // F#6 - 1568, // G6 - 1661, // G#6 - 1760, // A6 - 1865, // A#6 - 1976, // B6 - 2093, // C7 - 2217, // C#7 - 2349, // D7 - 2489, // D#7 - 2637, // E7 - 2794, // F7 - 2960, // F#7 - 3136, // G7 - 3322, // G#7 - 3520, // A7 - 3729, // A#7 - 3951, // B7 - 4186, // C8 - 4435 // C#8 - }; - - static readonly string[] notes = - { - "A0","A#0","B0", - "C1","C#1","D1","D#1","E1","F1","F#1","G1","G#1","A1","A#1","B1", - "C2","C#2","D2","D#2","E2","F2","F#2","G2","G#2","A2","A#2","B2", - "C3","C#3","D3","D#3","E3","F3","F#3","G3","G#3","A3","A#3","B3", - "C4","C#4","D4","D#4","E4","F4","F#4","G4","G#4","A4","A#4","B4", - "C5","C#5","D5","D#5","E5","F5","F#5","G5","G#5","A5","A#5","B5", - "C6","C#6","D6","D#6","E6","F6","F#6","G6","G#6","A6","A#6","B6", - "C7","C#7","D7","D#7","E7","F7","F#7","G7","G#7","A7","A#7","B7", - "C8","HIGH" - }; - - #endregion - public int MaxVolume { get; set; } public void DiscardSamples() { commands.Clear(); } public void GetSamples(short[] samples) diff --git a/BizHawk.Emulation.Common/Sound/YM2413.cs b/BizHawk.Emulation.Common/Sound/YM2413.cs index 6c1298325c..c1e44970e8 100644 --- a/BizHawk.Emulation.Common/Sound/YM2413.cs +++ b/BizHawk.Emulation.Common/Sound/YM2413.cs @@ -29,6 +29,7 @@ namespace BizHawk.Emulation.Common.Components VRC7 = 1, YMF281B = 2 }; + public YM2413(ChipType type) { MaxVolume = short.MaxValue; @@ -37,8 +38,16 @@ namespace BizHawk.Emulation.Common.Components public void SyncState(Serializer ser) { - //TODO !! MUCH BETTER-NESS! + ser.BeginSection("YM2413"); ser.Sync("RegisterLatch", ref RegisterLatch); + ser.Sync("Registers", ref opll.reg, false); + ser.EndSection(); + } + + public void PostLoadState() + { + for (byte i = 0; i < opll.reg.Length; i++) + Write(i, opll.reg[i]); } public void Reset() diff --git a/BizHawk.Emulation.Cores/CPUs/Z80/Z80A.cs b/BizHawk.Emulation.Cores/CPUs/Z80/Z80A.cs index 7c51acc9d6..9b8e4e6fcc 100644 --- a/BizHawk.Emulation.Cores/CPUs/Z80/Z80A.cs +++ b/BizHawk.Emulation.Cores/CPUs/Z80/Z80A.cs @@ -1,29 +1,21 @@ using System; using System.Globalization; using System.IO; +using BizHawk.Common; // This Z80 emulator is a modified version of Ben Ryves 'Brazil' emulator. // It is MIT licensed. namespace BizHawk.Emulation.Cores.Components.Z80 { - /// - /// ZiLOG Z80A CPU Emulator - /// public sealed partial class Z80A { - /// - /// Creates an instance of the emulator class. - /// public Z80A() { InitialiseTables(); Reset(); } - /// - /// Reset the Z80 to its initial state - /// public void Reset() { ResetRegisters(); @@ -33,9 +25,6 @@ namespace BizHawk.Emulation.Cores.Components.Z80 TotalExecutedCycles = 0; } - /// - /// Reset the Z80 to its initial state, but don't modify cycle counters. For use where Z80 may be reset - /// public void SoftReset() { ResetRegisters(); @@ -62,149 +51,33 @@ namespace BizHawk.Emulation.Cores.Components.Z80 // State Save/Load - public void SaveStateText(TextWriter writer) + public void SyncState(Serializer ser) { - writer.WriteLine("[Z80]"); - writer.WriteLine("AF {0:X4}", RegAF.Word); - writer.WriteLine("BC {0:X4}", RegBC.Word); - writer.WriteLine("DE {0:X4}", RegDE.Word); - writer.WriteLine("HL {0:X4}", RegHL.Word); - writer.WriteLine("ShadowAF {0:X4}", RegAltAF.Word); - writer.WriteLine("ShadowBC {0:X4}", RegAltBC.Word); - writer.WriteLine("ShadowDE {0:X4}", RegAltDE.Word); - writer.WriteLine("ShadowHL {0:X4}", RegAltHL.Word); - writer.WriteLine("I {0:X2}", RegI); - writer.WriteLine("R {0:X2}", RegR); - writer.WriteLine("IX {0:X4}", RegIX.Word); - writer.WriteLine("IY {0:X4}", RegIY.Word); - writer.WriteLine("SP {0:X4}", RegSP.Word); - writer.WriteLine("PC {0:X4}", RegPC.Word); - writer.WriteLine("IRQ {0}", interrupt); - writer.WriteLine("NMI {0}", nonMaskableInterrupt); - writer.WriteLine("NMIPending {0}", nonMaskableInterruptPending); - writer.WriteLine("IM {0}", InterruptMode); - writer.WriteLine("IFF1 {0}", IFF1); - writer.WriteLine("IFF2 {0}", IFF2); - writer.WriteLine("Halted {0}", Halted); - writer.WriteLine("ExecutedCycles {0}", TotalExecutedCycles); - writer.WriteLine("PendingCycles {0}", PendingCycles); - writer.WriteLine("[/Z80]"); - writer.WriteLine(); - } - - public void LoadStateText(TextReader reader) - { - while (true) - { - string[] args = reader.ReadLine().Split(' '); - if (args[0].Trim() == "") continue; - if (args[0] == "[/Z80]") break; - if (args[0] == "AF") - RegAF.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "BC") - RegBC.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "DE") - RegDE.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "HL") - RegHL.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "ShadowAF") - RegAltAF.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "ShadowBC") - RegAltBC.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "ShadowDE") - RegAltDE.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "ShadowHL") - RegAltHL.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "I") - RegI = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "R") - RegR = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "IX") - RegIX.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "IY") - RegIY.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "SP") - RegSP.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "PC") - RegPC.Word = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "IRQ") - interrupt = bool.Parse(args[1]); - else if (args[0] == "NMI") - nonMaskableInterrupt = bool.Parse(args[1]); - else if (args[0] == "NMIPending") - nonMaskableInterruptPending = bool.Parse(args[1]); - else if (args[0] == "IM") - InterruptMode = int.Parse(args[1]); - else if (args[0] == "IFF1") - IFF1 = bool.Parse(args[1]); - else if (args[0] == "IFF2") - IFF2 = bool.Parse(args[1]); - else if (args[0] == "Halted") - Halted = bool.Parse(args[1]); - else if (args[0] == "ExecutedCycles") - TotalExecutedCycles = int.Parse(args[1]); - else if (args[0] == "PendingCycles") - PendingCycles = int.Parse(args[1]); - - else - Console.WriteLine("Skipping unrecognized identifier " + args[0]); - } - } - - public void SaveStateBinary(BinaryWriter writer) - { - writer.Write(RegAF.Word); - writer.Write(RegBC.Word); - writer.Write(RegDE.Word); - writer.Write(RegHL.Word); - writer.Write(RegAltAF.Word); - writer.Write(RegAltBC.Word); - writer.Write(RegAltDE.Word); - writer.Write(RegAltHL.Word); - writer.Write(RegAltAF.Word); - writer.Write(RegI); - writer.Write(RegR); - writer.Write(RegIX.Word); - writer.Write(RegIY.Word); - writer.Write(RegSP.Word); - writer.Write(RegPC.Word); - writer.Write(interrupt); - writer.Write(nonMaskableInterrupt); - writer.Write(nonMaskableInterruptPending); - writer.Write(InterruptMode); - writer.Write(IFF1); - writer.Write(IFF2); - writer.Write(Halted); - writer.Write(TotalExecutedCycles); - writer.Write(PendingCycles); - } - - public void LoadStateBinary(BinaryReader reader) - { - RegAF.Word = reader.ReadUInt16(); - RegBC.Word = reader.ReadUInt16(); - RegDE.Word = reader.ReadUInt16(); - RegHL.Word = reader.ReadUInt16(); - RegAltAF.Word = reader.ReadUInt16(); - RegAltBC.Word = reader.ReadUInt16(); - RegAltDE.Word = reader.ReadUInt16(); - RegAltHL.Word = reader.ReadUInt16(); - RegAltAF.Word = reader.ReadUInt16(); - RegI = reader.ReadByte(); - RegR = reader.ReadByte(); - RegIX.Word = reader.ReadUInt16(); - RegIY.Word = reader.ReadUInt16(); - RegSP.Word = reader.ReadUInt16(); - RegPC.Word = reader.ReadUInt16(); - interrupt = reader.ReadBoolean(); - nonMaskableInterrupt = reader.ReadBoolean(); - nonMaskableInterruptPending = reader.ReadBoolean(); - InterruptMode = reader.ReadInt32(); - IFF1 = reader.ReadBoolean(); - IFF2 = reader.ReadBoolean(); - Halted = reader.ReadBoolean(); - TotalExecutedCycles = reader.ReadInt32(); - PendingCycles = reader.ReadInt32(); + ser.BeginSection("Z80"); + ser.Sync("AF", ref RegAF.Word); + ser.Sync("BC", ref RegBC.Word); + ser.Sync("DE", ref RegDE.Word); + ser.Sync("HL", ref RegHL.Word); + ser.Sync("ShadowAF", ref RegAltAF.Word); + ser.Sync("ShadowBC", ref RegAltBC.Word); + ser.Sync("ShadowDE", ref RegAltDE.Word); + ser.Sync("ShadowHL", ref RegAltHL.Word); + ser.Sync("I", ref RegI); + ser.Sync("R", ref RegR); + ser.Sync("IX", ref RegIX.Word); + ser.Sync("IY", ref RegIY.Word); + ser.Sync("SP", ref RegSP.Word); + ser.Sync("PC", ref RegPC.Word); + ser.Sync("IRQ", ref interrupt); + ser.Sync("NMI", ref nonMaskableInterrupt); + ser.Sync("NMIPending", ref nonMaskableInterruptPending); + ser.Sync("IM", ref interruptMode); + ser.Sync("IFF1", ref iff1); + ser.Sync("IFF2", ref iff2); + ser.Sync("Halted", ref halted); + ser.Sync("ExecutedCycles", ref totalExecutedCycles); + ser.Sync("PendingCycles", ref pendingCycles); + ser.EndSection(); } } -} +} \ No newline at end of file diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index 8c1aa705a6..40dd73b376 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -41,43 +41,6 @@ namespace BizHawk.Emulation.Cores.Calculators //------- - public List> GetCpuFlagsAndRegisters() - { - return new List> - { - new KeyValuePair("A", cpu.RegisterA), - new KeyValuePair("AF", cpu.RegisterAF), - new KeyValuePair("B", cpu.RegisterB), - new KeyValuePair("BC", cpu.RegisterBC), - new KeyValuePair("C", cpu.RegisterC), - new KeyValuePair("D", cpu.RegisterD), - new KeyValuePair("DE", cpu.RegisterDE), - new KeyValuePair("E", cpu.RegisterE), - new KeyValuePair("F", cpu.RegisterF), - new KeyValuePair("H", cpu.RegisterH), - new KeyValuePair("HL", cpu.RegisterHL), - new KeyValuePair("I", cpu.RegisterI), - new KeyValuePair("IX", cpu.RegisterIX), - new KeyValuePair("IY", cpu.RegisterIY), - new KeyValuePair("L", cpu.RegisterL), - new KeyValuePair("PC", cpu.RegisterPC), - new KeyValuePair("R", cpu.RegisterR), - new KeyValuePair("Shadow AF", cpu.RegisterShadowAF), - new KeyValuePair("Shadow BC", cpu.RegisterShadowBC), - new KeyValuePair("Shadow DE", cpu.RegisterShadowDE), - new KeyValuePair("Shadow HL", cpu.RegisterShadowHL), - new KeyValuePair("SP", cpu.RegisterSP), - new KeyValuePair("Flag C", cpu.RegisterF.Bit(0) ? 1 : 0), - new KeyValuePair("Flag N", cpu.RegisterF.Bit(1) ? 1 : 0), - new KeyValuePair("Flag P/V", cpu.RegisterF.Bit(2) ? 1 : 0), - new KeyValuePair("Flag 3rd", cpu.RegisterF.Bit(3) ? 1 : 0), - new KeyValuePair("Flag H", cpu.RegisterF.Bit(4) ? 1 : 0), - new KeyValuePair("Flag 5th", cpu.RegisterF.Bit(5) ? 1 : 0), - new KeyValuePair("Flag Z", cpu.RegisterF.Bit(6) ? 1 : 0), - new KeyValuePair("Flag S", cpu.RegisterF.Bit(7) ? 1 : 0), - }; - } - public byte ReadMemory(ushort addr) { byte ret; @@ -496,12 +459,12 @@ namespace BizHawk.Emulation.Cores.Calculators Frame++; if (lagged) { - _lagcount++; - islag = true; + lagCount++; + isLag = true; } else { - islag = false; + isLag = false; } } @@ -527,21 +490,21 @@ namespace BizHawk.Emulation.Cores.Calculators disp_x = disp_y = 0; } - private int _lagcount = 0; + private int lagCount = 0; private bool lagged = true; - private bool islag = false; - public int Frame { get; set; } + private bool isLag = false; + private int frame; + public int Frame { get { return frame; } set { frame = value; } } + public int LagCount { get { return lagCount; } set { lagCount = value; } } + public bool IsLagFrame { get { return isLag; } } public void ResetCounters() { Frame = 0; - _lagcount = 0; - islag = false; + lagCount = 0; + isLag = false; } - public int LagCount { get { return _lagcount; } set { _lagcount = value; } } - public bool IsLagFrame { get { return islag; } } - public bool DeterministicEmulation { get { return true; } } public byte[] ReadSaveRam() { return null; } @@ -553,97 +516,58 @@ namespace BizHawk.Emulation.Cores.Calculators set { } } - public void SaveStateText(TextWriter writer) + public bool BinarySaveStatesPreferred { get { return false; } } + public void SaveStateBinary(BinaryWriter bw) { SyncState(Serializer.CreateBinaryWriter(bw)); } + public void LoadStateBinary(BinaryReader br) { SyncState(Serializer.CreateBinaryReader(br)); } + public void SaveStateText(TextWriter tw) { SyncState(Serializer.CreateTextWriter(tw)); } + public void LoadStateText(TextReader tr) { SyncState(Serializer.CreateTextReader(tr)); } + + void SyncState(Serializer ser) { - writer.WriteLine("[TI83]\n"); - writer.WriteLine("Frame {0}", Frame); - cpu.SaveStateText(writer); - writer.Write("RAM "); - ram.SaveAsHex(writer); - writer.WriteLine("romPageLow3Bits {0}", romPageLow3Bits); - writer.WriteLine("romPageHighBit {0}", romPageHighBit); - writer.WriteLine("disp_mode {0}", disp_mode); - writer.WriteLine("disp_move {0}", disp_move); - writer.WriteLine("disp_x {0}", disp_x); - writer.WriteLine("disp_y {0}", disp_y); - writer.WriteLine("m_CursorMoved {0}", m_CursorMoved); - writer.WriteLine("maskOn {0}", maskOn); - writer.WriteLine("onPressed {0}", onPressed); - writer.WriteLine("keyboardMask {0}", keyboardMask); - writer.WriteLine("m_LinkOutput {0}", m_LinkOutput); - writer.WriteLine("m_LinkInput {0}", m_LinkInput); - writer.WriteLine("lag {0}", _lagcount); - writer.WriteLine("islag {0}", islag); - writer.WriteLine("vram {0}", Util.BytesToHexString(vram)); - writer.WriteLine("[/TI83]"); + ser.BeginSection("TI83"); + cpu.SyncState(ser); + ser.Sync("RAM", ref ram, false); + ser.Sync("romPageLow3Bits", ref romPageLow3Bits); + ser.Sync("romPageHighBit", ref romPageHighBit); + ser.Sync("disp_mode", ref disp_mode); + ser.Sync("disp_move", ref disp_move); + ser.Sync("disp_x", ref disp_x); + ser.Sync("disp_y", ref disp_y); + ser.Sync("m_CursorMoved", ref m_CursorMoved); + ser.Sync("maskOn", ref maskOn); + ser.Sync("onPressed", ref onPressed); + ser.Sync("keyboardMask", ref keyboardMask); + ser.Sync("m_LinkOutput", ref m_LinkOutput); + ser.Sync("VRAM", ref vram, false); + ser.Sync("Frame", ref frame); + ser.Sync("LagCount", ref lagCount); + ser.Sync("IsLag", ref isLag); + ser.EndSection(); } - public void LoadStateText(TextReader reader) + byte[] stateBuffer; + public byte[] SaveStateBinary() { - while (true) + if (stateBuffer == null) { - string[] args = reader.ReadLine().Split(' '); - if (args[0].Trim() == "") continue; - if (args[0] == "[TI83]") continue; - if (args[0] == "[/TI83]") break; - if (args[0] == "Frame") - Frame = int.Parse(args[1]); - else if (args[0] == "[Z80]") - cpu.LoadStateText(reader); - else if (args[0] == "RAM") - ram.ReadFromHex(args[1]); - else if (args[0] == "romPageLow3Bits") - romPageLow3Bits = int.Parse(args[1]); - else if (args[0] == "romPageHighBit") - romPageHighBit = int.Parse(args[1]); - else if (args[0] == "disp_mode") - disp_mode = int.Parse(args[1]); - else if (args[0] == "disp_move") - disp_move = int.Parse(args[1]); - else if (args[0] == "disp_x") - disp_x = uint.Parse(args[1]); - else if (args[0] == "disp_y") - disp_y = uint.Parse(args[1]); - else if (args[0] == "m_CursorMoved") - m_CursorMoved = bool.Parse(args[1]); - else if (args[0] == "maskOn") - maskOn = byte.Parse(args[1]); - else if (args[0] == "onPressed") - onPressed = bool.Parse(args[1]); - else if (args[0] == "keyboardMask") - keyboardMask = int.Parse(args[1]); - else if (args[0] == "m_LinkOutput") - m_LinkOutput = int.Parse(args[1]); - else if (args[0] == "m_LinkInput") - m_LinkInput = int.Parse(args[1]); - else if (args[0] == "lag") - _lagcount = int.Parse(args[1]); - else if (args[0] == "islag") - islag = bool.Parse(args[1]); - else if (args[0] == "vram") - vram = Util.HexStringToBytes(args[1]); - else - Console.WriteLine("Skipping unrecognized identifier " + args[0]); + var stream = new MemoryStream(); + var writer = new BinaryWriter(stream); + SaveStateBinary(writer); + stateBuffer = stream.ToArray(); + writer.Close(); + return stateBuffer; + } + else + { + var stream = new MemoryStream(stateBuffer); + var writer = new BinaryWriter(stream); + SaveStateBinary(writer); + writer.Close(); + return stateBuffer; } } - public void SaveStateBinary(BinaryWriter writer) - { - } - - public void LoadStateBinary(BinaryReader reader) - { - } - - public byte[] SaveStateBinary() - { - return new byte[0]; - } - - public bool BinarySaveStatesPreferred { get { return false; } } - public string SystemId { get { return "TI83"; } } - public string BoardName { get { return null; } } private MemoryDomainList _memoryDomains; @@ -1047,5 +971,41 @@ namespace BizHawk.Emulation.Cores.Calculators public bool PutSettings(object o) { return false; } public bool PutSyncSettings(object o) { return false; } + public List> GetCpuFlagsAndRegisters() + { + return new List> + { + new KeyValuePair("A", cpu.RegisterA), + new KeyValuePair("AF", cpu.RegisterAF), + new KeyValuePair("B", cpu.RegisterB), + new KeyValuePair("BC", cpu.RegisterBC), + new KeyValuePair("C", cpu.RegisterC), + new KeyValuePair("D", cpu.RegisterD), + new KeyValuePair("DE", cpu.RegisterDE), + new KeyValuePair("E", cpu.RegisterE), + new KeyValuePair("F", cpu.RegisterF), + new KeyValuePair("H", cpu.RegisterH), + new KeyValuePair("HL", cpu.RegisterHL), + new KeyValuePair("I", cpu.RegisterI), + new KeyValuePair("IX", cpu.RegisterIX), + new KeyValuePair("IY", cpu.RegisterIY), + new KeyValuePair("L", cpu.RegisterL), + new KeyValuePair("PC", cpu.RegisterPC), + new KeyValuePair("R", cpu.RegisterR), + new KeyValuePair("Shadow AF", cpu.RegisterShadowAF), + new KeyValuePair("Shadow BC", cpu.RegisterShadowBC), + new KeyValuePair("Shadow DE", cpu.RegisterShadowDE), + new KeyValuePair("Shadow HL", cpu.RegisterShadowHL), + new KeyValuePair("SP", cpu.RegisterSP), + new KeyValuePair("Flag C", cpu.RegisterF.Bit(0) ? 1 : 0), + new KeyValuePair("Flag N", cpu.RegisterF.Bit(1) ? 1 : 0), + new KeyValuePair("Flag P/V", cpu.RegisterF.Bit(2) ? 1 : 0), + new KeyValuePair("Flag 3rd", cpu.RegisterF.Bit(3) ? 1 : 0), + new KeyValuePair("Flag H", cpu.RegisterF.Bit(4) ? 1 : 0), + new KeyValuePair("Flag 5th", cpu.RegisterF.Bit(5) ? 1 : 0), + new KeyValuePair("Flag Z", cpu.RegisterF.Bit(6) ? 1 : 0), + new KeyValuePair("Flag S", cpu.RegisterF.Bit(7) ? 1 : 0), + }; + } } } \ No newline at end of file diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs index 5727ed76bd..b66fb4a0ab 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs @@ -85,52 +85,15 @@ namespace BizHawk.Emulation.Cores.ColecoVision public void FrameAdvance(bool render, bool renderSound) { Frame++; - islag = true; + isLag = true; PSG.BeginFrame(Cpu.TotalExecutedCycles); VDP.ExecuteFrame(); PSG.EndFrame(Cpu.TotalExecutedCycles); - if (islag) + if (isLag) LagCount++; } - public List> GetCpuFlagsAndRegisters() - { - return new List> - { - new KeyValuePair("A", Cpu.RegisterA), - new KeyValuePair("AF", Cpu.RegisterAF), - new KeyValuePair("B", Cpu.RegisterB), - new KeyValuePair("BC", Cpu.RegisterBC), - new KeyValuePair("C", Cpu.RegisterC), - new KeyValuePair("D", Cpu.RegisterD), - new KeyValuePair("DE", Cpu.RegisterDE), - new KeyValuePair("E", Cpu.RegisterE), - new KeyValuePair("F", Cpu.RegisterF), - new KeyValuePair("H", Cpu.RegisterH), - new KeyValuePair("HL", Cpu.RegisterHL), - new KeyValuePair("I", Cpu.RegisterI), - new KeyValuePair("IX", Cpu.RegisterIX), - new KeyValuePair("IY", Cpu.RegisterIY), - new KeyValuePair("L", Cpu.RegisterL), - new KeyValuePair("PC", Cpu.RegisterPC), - new KeyValuePair("R", Cpu.RegisterR), - new KeyValuePair("Shadow AF", Cpu.RegisterShadowAF), - new KeyValuePair("Shadow BC", Cpu.RegisterShadowBC), - new KeyValuePair("Shadow DE", Cpu.RegisterShadowDE), - new KeyValuePair("Shadow HL", Cpu.RegisterShadowHL), - new KeyValuePair("SP", Cpu.RegisterSP), - new KeyValuePair("Flag C", Cpu.RegisterF.Bit(0) ? 1 : 0), - new KeyValuePair("Flag N", Cpu.RegisterF.Bit(1) ? 1 : 0), - new KeyValuePair("Flag P/V", Cpu.RegisterF.Bit(2) ? 1 : 0), - new KeyValuePair("Flag 3rd", Cpu.RegisterF.Bit(3) ? 1 : 0), - new KeyValuePair("Flag H", Cpu.RegisterF.Bit(4) ? 1 : 0), - new KeyValuePair("Flag 5th", Cpu.RegisterF.Bit(5) ? 1 : 0), - new KeyValuePair("Flag Z", Cpu.RegisterF.Bit(6) ? 1 : 0), - new KeyValuePair("Flag S", Cpu.RegisterF.Bit(7) ? 1 : 0), - }; - } - void LoadRom(byte[] rom, bool skipbios) { RomData = new byte[0x8000]; @@ -205,90 +168,59 @@ namespace BizHawk.Emulation.Cores.ColecoVision public bool DeterministicEmulation { get { return true; } } - public void SaveStateText(TextWriter writer) - { - writer.WriteLine("[Coleco]\n"); - Cpu.SaveStateText(writer); - PSG.SaveStateText(writer); - VDP.SaveStateText(writer); + public bool BinarySaveStatesPreferred { get { return false; } } + public void SaveStateBinary(BinaryWriter bw) { SyncState(Serializer.CreateBinaryWriter(bw)); } + public void LoadStateBinary(BinaryReader br) { SyncState(Serializer.CreateBinaryReader(br)); PostLoadState(); } + public void SaveStateText(TextWriter tw) { SyncState(Serializer.CreateTextWriter(tw)); } + public void LoadStateText(TextReader tr) { SyncState(Serializer.CreateTextReader(tr)); PostLoadState(); } - writer.WriteLine("Frame {0}", Frame); - writer.WriteLine("Lag {0}", _lagcount); - writer.WriteLine("islag {0}", islag); - writer.Write("RAM "); - Ram.SaveAsHex(writer); - writer.WriteLine("[/Coleco]"); + void SyncState(Serializer ser) + { + ser.BeginSection("Coleco"); + Cpu.SyncState(ser); + VDP.SyncState(ser); + PSG.SyncState(ser); + ser.Sync("RAM", ref Ram, false); + ser.Sync("Frame", ref frame); + ser.Sync("LagCount", ref lagCount); + ser.Sync("IsLag", ref isLag); + ser.EndSection(); } - public void LoadStateText(TextReader reader) + void PostLoadState() { - while (true) - { - string[] args = reader.ReadLine().Split(' '); - if (args[0].Trim() == "") continue; - if (args[0] == "[Coleco]") continue; - if (args[0] == "[/Coleco]") break; - else if (args[0] == "Frame") - Frame = int.Parse(args[1]); - else if (args[0] == "Lag") - _lagcount = int.Parse(args[1]); - else if (args[0] == "islag") - islag = bool.Parse(args[1]); - else if (args[0] == "RAM") - Ram.ReadFromHex(args[1]); - else if (args[0] == "[Z80]") - Cpu.LoadStateText(reader); - else if (args[0] == "[PSG]") - PSG.LoadStateText(reader); - else if (args[0] == "[VDP]") - VDP.LoadStateText(reader); - else - Console.WriteLine("Skipping unrecognized identifier " + args[0]); - } + VDP.PostLoadState(); + PSG.PostLoadState(); } + byte[] stateBuffer; public byte[] SaveStateBinary() { - var buf = new byte[24802 + 16384 + 16384]; - var stream = new MemoryStream(buf); - var writer = new BinaryWriter(stream); - SaveStateBinary(writer); - writer.Close(); - return buf; - } - - public bool BinarySaveStatesPreferred { get { return false; } } - - public void SaveStateBinary(BinaryWriter writer) - { - Cpu.SaveStateBinary(writer); - PSG.SaveStateBinary(writer); - VDP.SaveStateBinary(writer); - - writer.Write(Frame); - writer.Write(_lagcount); - writer.Write(islag); - writer.Write(Ram); - } - - public void LoadStateBinary(BinaryReader reader) - { - Cpu.LoadStateBinary(reader); - PSG.LoadStateBinary(reader); - VDP.LoadStateBinary(reader); - - Frame = reader.ReadInt32(); - _lagcount = reader.ReadInt32(); - islag = reader.ReadBoolean(); - Ram = reader.ReadBytes(Ram.Length); + if (stateBuffer == null) + { + var stream = new MemoryStream(); + var writer = new BinaryWriter(stream); + SaveStateBinary(writer); + stateBuffer = stream.ToArray(); + writer.Close(); + return stateBuffer; + } + else + { + var stream = new MemoryStream(stateBuffer); + var writer = new BinaryWriter(stream); + SaveStateBinary(writer); + writer.Close(); + return stateBuffer; + } } public void Dispose() { } public void ResetCounters() { Frame = 0; - _lagcount = 0; - islag = false; + lagCount = 0; + isLag = false; } public string SystemId { get { return "Coleco"; } } @@ -324,5 +256,42 @@ namespace BizHawk.Emulation.Cores.ColecoVision return (ColecoSyncSettings)MemberwiseClone(); } } + + public List> GetCpuFlagsAndRegisters() + { + return new List> + { + new KeyValuePair("A", Cpu.RegisterA), + new KeyValuePair("AF", Cpu.RegisterAF), + new KeyValuePair("B", Cpu.RegisterB), + new KeyValuePair("BC", Cpu.RegisterBC), + new KeyValuePair("C", Cpu.RegisterC), + new KeyValuePair("D", Cpu.RegisterD), + new KeyValuePair("DE", Cpu.RegisterDE), + new KeyValuePair("E", Cpu.RegisterE), + new KeyValuePair("F", Cpu.RegisterF), + new KeyValuePair("H", Cpu.RegisterH), + new KeyValuePair("HL", Cpu.RegisterHL), + new KeyValuePair("I", Cpu.RegisterI), + new KeyValuePair("IX", Cpu.RegisterIX), + new KeyValuePair("IY", Cpu.RegisterIY), + new KeyValuePair("L", Cpu.RegisterL), + new KeyValuePair("PC", Cpu.RegisterPC), + new KeyValuePair("R", Cpu.RegisterR), + new KeyValuePair("Shadow AF", Cpu.RegisterShadowAF), + new KeyValuePair("Shadow BC", Cpu.RegisterShadowBC), + new KeyValuePair("Shadow DE", Cpu.RegisterShadowDE), + new KeyValuePair("Shadow HL", Cpu.RegisterShadowHL), + new KeyValuePair("SP", Cpu.RegisterSP), + new KeyValuePair("Flag C", Cpu.RegisterF.Bit(0) ? 1 : 0), + new KeyValuePair("Flag N", Cpu.RegisterF.Bit(1) ? 1 : 0), + new KeyValuePair("Flag P/V", Cpu.RegisterF.Bit(2) ? 1 : 0), + new KeyValuePair("Flag 3rd", Cpu.RegisterF.Bit(3) ? 1 : 0), + new KeyValuePair("Flag H", Cpu.RegisterF.Bit(4) ? 1 : 0), + new KeyValuePair("Flag 5th", Cpu.RegisterF.Bit(5) ? 1 : 0), + new KeyValuePair("Flag Z", Cpu.RegisterF.Bit(6) ? 1 : 0), + new KeyValuePair("Flag S", Cpu.RegisterF.Bit(7) ? 1 : 0), + }; + } } } \ No newline at end of file diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs index 532ed039fc..f616f7a937 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs @@ -29,7 +29,7 @@ namespace BizHawk.Emulation.Cores.ColecoVision byte ReadController1() { - islag = false; + isLag = false; if (InputPortSelection == InputPortMode.Left) { @@ -73,7 +73,7 @@ namespace BizHawk.Emulation.Cores.ColecoVision byte ReadController2() { - islag = false; + isLag = false; if (InputPortSelection == InputPortMode.Left) { @@ -114,17 +114,12 @@ namespace BizHawk.Emulation.Cores.ColecoVision return 0x7F; } - public int Frame { get; set; } - public int LagCount { get { return _lagcount; } set { _lagcount = value; } } - public bool IsLagFrame - { - get - { - return islag; - } - } - - private int _lagcount = 0; - private bool islag = true; + public int Frame { get { return frame; } set { frame = value; } } + public int LagCount { get { return lagCount; } set { lagCount = value; } } + public bool IsLagFrame { get { return isLag; } } + + int frame; + int lagCount = 0; + bool isLag = true; } } diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs index 96ba43346c..2cf0626062 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/TMS9918A.cs @@ -18,8 +18,6 @@ namespace BizHawk.Emulation.Cores.ColecoVision byte VdpLatch; ushort VdpAddress; byte VdpBuffer; - VdpCommand vdpCommand; // TODO remove? - int TmsMode; bool Mode1Bit { get { return (Registers[1] & 16) > 0; } } @@ -77,16 +75,13 @@ namespace BizHawk.Emulation.Cores.ColecoVision switch (value & 0xC0) { case 0x00: // read VRAM - vdpCommand = VdpCommand.VramRead; VdpBuffer = VRAM[VdpAddress]; VdpAddress++; VdpAddress &= 0x3FFF; break; case 0x40: // write VRAM - vdpCommand = VdpCommand.VramWrite; break; case 0x80: // VDP register write - vdpCommand = VdpCommand.RegisterWrite; int reg = value & 0x0F; WriteRegister(reg, VdpLatch); break; @@ -455,8 +450,6 @@ namespace BizHawk.Emulation.Cores.ColecoVision public int BufferHeight { get { return 192; } } public int BackgroundColor { get { return 0; } } - enum VdpCommand { VramRead, VramWrite, RegisterWrite } - int[] PaletteTMS9918 = new int[] { unchecked((int)0xFF000000), @@ -477,83 +470,23 @@ namespace BizHawk.Emulation.Cores.ColecoVision unchecked((int)0xFFFFFFFF) }; - public void SaveStateText(TextWriter writer) + public void SyncState(Serializer ser) { - //TODO - finish - writer.WriteLine("[VDP]"); - writer.WriteLine("StatusByte {0:X2}", StatusByte); - writer.WriteLine("WaitingForLatchByte {0}", VdpWaitingForLatchByte); - writer.WriteLine("Latch {0:X2}", VdpLatch); - writer.WriteLine("ReadBuffer {0:X2}", VdpBuffer); - writer.WriteLine("VdpAddress {0:X4}", VdpAddress); - writer.WriteLine("Command " + Enum.GetName(typeof(VdpCommand), vdpCommand)); - - writer.Write("Registers "); - Registers.SaveAsHex(writer); - writer.Write("VRAM "); - VRAM.SaveAsHex(writer); - - writer.WriteLine("[/VDP]"); - writer.WriteLine(); + ser.BeginSection("VDP"); + ser.Sync("StatusByte", ref StatusByte); + ser.Sync("WaitingForLatchByte", ref VdpWaitingForLatchByte); + ser.Sync("Latch", ref VdpLatch); + ser.Sync("ReadBuffer", ref VdpBuffer); + ser.Sync("VdpAddress", ref VdpAddress); + ser.Sync("Registers", ref Registers, false); + ser.Sync("VRAM", ref VRAM, false); + ser.EndSection(); } - public void LoadStateText(TextReader reader) + public void PostLoadState() { - //TODO - finish - while (true) - { - string[] args = reader.ReadLine().Split(' '); - if (args[0].Trim() == "") continue; - if (args[0] == "[/VDP]") break; - if (args[0] == "StatusByte") - StatusByte = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "WaitingForLatchByte") - VdpWaitingForLatchByte = bool.Parse(args[1]); - else if (args[0] == "Latch") - VdpLatch = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "ReadBuffer") - VdpBuffer = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "VdpAddress") - VdpAddress = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Command") - vdpCommand = (VdpCommand)Enum.Parse(typeof(VdpCommand), args[1]); - else if (args[0] == "Registers") - Registers.ReadFromHex(args[1]); - else if (args[0] == "VRAM") - VRAM.ReadFromHex(args[1]); - else - Console.WriteLine("Skipping unrecognized identifier " + args[0]); - } for (int i = 0; i < Registers.Length; i++) WriteRegister(i, Registers[i]); } - - public void SaveStateBinary(BinaryWriter writer) - { - writer.Write(StatusByte); - writer.Write(VdpWaitingForLatchByte); - writer.Write(VdpLatch); - writer.Write(VdpBuffer); - writer.Write(VdpAddress); - writer.Write((byte)vdpCommand); - writer.Write(Registers); - writer.Write(VRAM); - } - - public void LoadStateBinary(BinaryReader reader) - { - StatusByte = reader.ReadByte(); - VdpWaitingForLatchByte = reader.ReadBoolean(); - VdpLatch = reader.ReadByte(); - VdpBuffer = reader.ReadByte(); - VdpAddress = reader.ReadUInt16(); - vdpCommand = (VdpCommand)Enum.ToObject(typeof(VdpCommand), reader.ReadByte()); - Registers = reader.ReadBytes(Registers.Length); - VRAM = reader.ReadBytes(VRAM.Length); - for (int i = 0; i < Registers.Length; i++) - { - WriteRegister(i, Registers[i]); - } - } } } \ No newline at end of file diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs index 4b09fb5d5c..47995f1fb6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Genesis.cs @@ -375,8 +375,8 @@ namespace BizHawk.Emulation.Cores.Sega.Genesis public void SaveStateBinary(BinaryWriter writer) { Musashi.SaveStateBinary(writer); // 124 - SoundCPU.SaveStateBinary(writer); // 46 - PSG.SaveStateBinary(writer); // 15 + //SoundCPU.SaveStateBinary(writer); // 46 TODO fix this, there is no way to invoke this core from the UI for testing anyway. + //PSG.SaveStateBinary(writer); // 15 VDP.SaveStateBinary(writer); // 65781 YM2612.SaveStateBinary(writer); // 1785 @@ -406,8 +406,8 @@ namespace BizHawk.Emulation.Cores.Sega.Genesis public void LoadStateBinary(BinaryReader reader) { Musashi.LoadStateBinary(reader); - SoundCPU.LoadStateBinary(reader); - PSG.LoadStateBinary(reader); + //SoundCPU.LoadStateBinary(reader); + //PSG.LoadStateBinary(reader); VDP.LoadStateBinary(reader); YM2612.LoadStateBinary(reader); diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/Compat.txt b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/Compat.txt index ff77ae6971..128e46f9f8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/Compat.txt +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/Compat.txt @@ -1,29 +1,20 @@ ======= SMS compatibility issues ======= -Hopefully due to sprite collision thingy? +Note: add PS1J-retranslation to gamedb Korean games currently not booting: - FA Tetris - Flashpoint - Sky Jaguar boots but gfx issues (works in cogwheel) (but not in MEKA!) -* NBA-Jam SMS Proto: works in PAL mode, which is how it's designed to run. - In NTSC mode, it is impossible to start a game, however, it is possible on - other emulators. - Need to give it a test on Everdrive, and eventually investigate its NTSC behavior, - but don't really consider it super-high priority since it works correctly in PAL mode. - * Desert Strike - you can enter the map screen but cannot leave. - Light Gun emulation - Paddle emulation - Sports pad emulation? -Could probably stand to do another pass on SMS emulation after Genesis is working. - ======= Game Gear compatibility issues ======= -* Ernie Els Golf has weird gfx corruption. Also in Cogwheel and Kega. Works in MEKA and Regen * Outrun has raster effect on the wrong line. I've been able to modify interrupt code to fix it, but so far, not without breaking other games. diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs index ab66ddc328..aa05aea10c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs @@ -21,7 +21,7 @@ byte ReadMemory(ushort address) { - byte ret; + byte ret = 0xFF; if (address < 0xC000) { @@ -40,8 +40,8 @@ switch (SaveRamBank) { case 0: ret = RomData[(RomBank2 * BankSize) + (address & BankSizeMask)]; break; - case 1: ret = SaveRAM[address & BankSizeMask]; break; - case 2: ret = SaveRAM[BankSize + (address & BankSizeMask)]; break; + case 1: if (SaveRAM != null) ret = SaveRAM[(address & BankSizeMask) % SaveRAM.Length]; break; + case 2: if (SaveRAM != null) ret = SaveRAM[(BankSize + (address & BankSizeMask)) & BankSizeMask]; break; default: ret = SystemRam[address & RamSizeMask]; break; @@ -63,14 +63,18 @@ if (address >= 0xC000) SystemRam[address & RamSizeMask] = value; - else if (address >= 0x8000) + else if (address >= 0x8000) { - SaveRamModified = true; - switch (SaveRamBank) + if (SaveRAM != null) { - case 1: SaveRAM[address & BankSizeMask] = value; return; - case 2: SaveRAM[BankSize + (address & BankSizeMask)] = value; return; + SaveRamModified = true; + switch (SaveRamBank) + { + case 1: SaveRAM[(address & BankSizeMask) % SaveRAM.Length] = value; return; + case 2: SaveRAM[(BankSize + (address & BankSizeMask)) & BankSizeMask] = value; return; + } } + else System.Console.WriteLine("Game attempt to use SRAM but SRAM not present"); } if (address >= 0xFFFC) @@ -87,7 +91,6 @@ else if (address == 0xFFFF) RomBank2 = (byte)(value % RomBanks); return; } - CoreComm.MemoryCallbackSystem.CallWrite((uint)address); } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs index 1e2b1a8ad9..1a597cbf90 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs @@ -9,17 +9,13 @@ using BizHawk.Emulation.Common.Components; using BizHawk.Emulation.Cores.Components.Z80; /***************************************************** - TODO: + HCounter + Try to clean up the organization of the source code. + Lightgun/Paddle/etc if I get really bored + Mode 1 not implemented in VDP TMS modes. (I dont have a test case in SG1000 or Coleco) - + Add Region to GameDB. + Still need a "disable bios for japan-only games when bios is enabled and region is export" functionality + Or a "force region to japan if game is only for japan" thing. Which one is better? - + I confess, Mapper system needs some refactoring and love. But right now I want to get all games to work and THEN refactor it. - + Savestate system.... maybe use a zeromus-like system. Except maintain the text-savestate compatibility. Might give up some speed for improved maintainability tho. **********************************************************/ @@ -36,7 +32,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem public byte RomBanks; // SaveRAM - public byte[] SaveRAM = new byte[BankSize * 2]; + public byte[] SaveRAM; public byte SaveRamBank; public byte[] BiosRom; @@ -70,13 +66,13 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem public bool IsGameGear = false; public bool HasYM2413 = false; - int _lagcount = 0; + int frame = 0; + int lagCount = 0; bool lagged = true; - bool islag = false; - public int Frame { get; set; } - - public int LagCount { get { return _lagcount; } set { _lagcount = value; } } - public bool IsLagFrame { get { return islag; } } + bool isLag = false; + public int Frame { get { return frame; } set { frame = value; } } + public int LagCount { get { return lagCount; } set { lagCount = value; } } + public bool IsLagFrame { get { return isLag; } } byte Port01 = 0xFF; byte Port02 = 0xFF; byte Port3E = 0xAF; @@ -92,9 +88,8 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { Settings = (SMSSettings)settings ?? new SMSSettings(); SyncSettings = (SMSSyncSettings)syncSettings ?? new SMSSyncSettings(); - CoreComm = comm; - + IsGameGear = game.System == "GG"; RomData = rom; CoreComm.CpuTraceAvailable = true; @@ -193,15 +188,20 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem if (SyncSettings.UseBIOS && BiosRom == null) CoreComm.Notify("BIOS was selected, but rom image not available. BIOS not enabled."); } - + + if (game["SRAM"]) + SaveRAM = new byte[int.Parse(game.OptionValue("SRAM"))]; + else if (game.NotInDatabase) + SaveRAM = new byte[0x8000]; + SetupMemoryDomains(); } public void ResetCounters() { Frame = 0; - _lagcount = 0; - islag = false; + lagCount = 0; + isLag = false; } public byte ReadPort(ushort port) @@ -298,183 +298,82 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem PSG.EndFrame(Cpu.TotalExecutedCycles); if (lagged) { - _lagcount++; - islag = true; + lagCount++; + isLag = true; } else - islag = false; - } - - public void SaveStateText(TextWriter writer) - { - writer.WriteLine("[SMS]\n"); - Cpu.SaveStateText(writer); - PSG.SaveStateText(writer); - Vdp.SaveStateText(writer); - - writer.WriteLine("Frame {0}", Frame); - writer.WriteLine("Lag {0}", _lagcount); - writer.WriteLine("IsLag {0}", islag); - writer.WriteLine("Bank0 {0}", RomBank0); - writer.WriteLine("Bank1 {0}", RomBank1); - writer.WriteLine("Bank2 {0}", RomBank2); - writer.WriteLine("Bank3 {0}", RomBank3); - writer.Write("RAM "); - SystemRam.SaveAsHex(writer); - writer.WriteLine("Port01 {0:X2}", Port01); - writer.WriteLine("Port02 {0:X2}", Port02); - writer.WriteLine("Port3E {0:X2}", Port3E); - writer.WriteLine("Port3F {0:X2}", Port3F); - int SaveRamLen = Util.SaveRamBytesUsed(SaveRAM); - if (SaveRamLen > 0) - { - writer.Write("SaveRAM "); - SaveRAM.SaveAsHex(writer, SaveRamLen); - } - if (ExtRam != null) - { - writer.Write("ExtRAM "); - ExtRam.SaveAsHex(writer, ExtRam.Length); - } - if (HasYM2413) - { - writer.Write("FMRegs "); - YM2413.opll.reg.SaveAsHex(writer); - } - writer.WriteLine("[/SMS]"); - } - - public void LoadStateText(TextReader reader) - { - while (true) - { - string[] args = reader.ReadLine().Split(' '); - if (args[0].Trim() == "") continue; - if (args[0] == "[SMS]") continue; - if (args[0] == "[/SMS]") break; - if (args[0] == "Bank0") - RomBank0 = byte.Parse(args[1]); - else if (args[0] == "Bank1") - RomBank1 = byte.Parse(args[1]); - else if (args[0] == "Bank2") - RomBank2 = byte.Parse(args[1]); - else if (args[0] == "Bank3") - RomBank3 = byte.Parse(args[1]); - else if (args[0] == "Frame") - Frame = int.Parse(args[1]); - else if (args[0] == "Lag") - _lagcount = int.Parse(args[1]); - else if (args[0] == "IsLag") - islag = bool.Parse(args[1]); - else if (args[0] == "RAM") - SystemRam.ReadFromHex(args[1]); - else if (args[0] == "SaveRAM") - { - for (int i = 0; i < SaveRAM.Length; i++) SaveRAM[i] = 0; - SaveRAM.ReadFromHex(args[1]); - } - else if (args[0] == "ExtRAM") - { - for (int i = 0; i < ExtRam.Length; i++) ExtRam[i] = 0; - ExtRam.ReadFromHex(args[1]); - } - else if (args[0] == "FMRegs") - { - byte[] regs = new byte[YM2413.opll.reg.Length]; - regs.ReadFromHex(args[1]); - for (byte i = 0; i < regs.Length; i++) - YM2413.Write(i, regs[i]); - } - else if (args[0] == "Port01") - Port01 = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Port02") - Port02 = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Port3E") - Port3E = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Port3F") - Port3F = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "[Z80]") - Cpu.LoadStateText(reader); - else if (args[0] == "[PSG]") - PSG.LoadStateText(reader); - else if (args[0] == "[VDP]") - Vdp.LoadStateText(reader); - else - Console.WriteLine("Skipping unrecognized identifier " + args[0]); - } - } - - public byte[] SaveStateBinary() - { - int buflen = 24809 + 16384 + 16384; - if (ExtRam != null) - buflen += ExtRam.Length; - var buf = new byte[buflen]; - var stream = new MemoryStream(buf); - var writer = new BinaryWriter(stream); - SaveStateBinary(writer); - if (stream.Length != buf.Length) - throw new Exception(string.Format("savestate buffer underrun: {0} < {1}", stream.Length, buf.Length)); - writer.Close(); - return buf; + isLag = false; } public bool BinarySaveStatesPreferred { get { return false; } } - - public void SaveStateBinary(BinaryWriter writer) + public void SaveStateBinary(BinaryWriter bw) { SyncState(Serializer.CreateBinaryWriter(bw)); } + public void LoadStateBinary(BinaryReader br) { SyncState(Serializer.CreateBinaryReader(br)); PostLoadState(); } + public void SaveStateText(TextWriter tw) { SyncState(Serializer.CreateTextWriter(tw)); } + public void LoadStateText(TextReader tr) { SyncState(Serializer.CreateTextReader(tr)); PostLoadState(); } + + void SyncState(Serializer ser) { - Cpu.SaveStateBinary(writer); - PSG.SaveStateBinary(writer); - Vdp.SaveStateBinary(writer); + ser.BeginSection("SMS"); + Cpu.SyncState(ser); + Vdp.SyncState(ser); + PSG.SyncState(ser); + ser.Sync("RAM", ref SystemRam, false); + ser.Sync("RomBank0", ref RomBank0); + ser.Sync("RomBank1", ref RomBank1); + ser.Sync("RomBank2", ref RomBank2); + ser.Sync("RomBank3", ref RomBank3); + ser.Sync("Port01", ref Port01); + ser.Sync("Port02", ref Port02); + ser.Sync("Port3E", ref Port3E); + ser.Sync("Port3F", ref Port3F); - writer.Write(Frame); - writer.Write(_lagcount); - writer.Write(islag); - writer.Write(RomBank0); - writer.Write(RomBank1); - writer.Write(RomBank2); - writer.Write(RomBank3); - writer.Write(SystemRam); - writer.Write(SaveRAM); - writer.Write(Port01); - writer.Write(Port02); - writer.Write(Port3E); - writer.Write(Port3F); + if (SaveRAM != null) + { + ser.Sync("SaveRAM", ref SaveRAM, false); + ser.Sync("SaveRamBank", ref SaveRamBank); + } if (ExtRam != null) - writer.Write(ExtRam); - writer.Write(YM2413.opll.reg); + ser.Sync("ExtRAM", ref ExtRam, true); + if (HasYM2413) + YM2413.SyncState(ser); + + ser.Sync("Frame", ref frame); + ser.Sync("LagCount", ref lagCount); + ser.Sync("IsLag", ref isLag); + + ser.EndSection(); } - public void LoadStateBinary(BinaryReader reader) + void PostLoadState() { - Cpu.LoadStateBinary(reader); - PSG.LoadStateBinary(reader); - Vdp.LoadStateBinary(reader); - - Frame = reader.ReadInt32(); - _lagcount = reader.ReadInt32(); - islag = reader.ReadBoolean(); - RomBank0 = reader.ReadByte(); - RomBank1 = reader.ReadByte(); - RomBank2 = reader.ReadByte(); - RomBank3 = reader.ReadByte(); - SystemRam = reader.ReadBytes(SystemRam.Length); - reader.Read(SaveRAM, 0, SaveRAM.Length); - Port01 = reader.ReadByte(); - Port02 = reader.ReadByte(); - Port3E = reader.ReadByte(); - Port3F = reader.ReadByte(); - if (ExtRam != null) - reader.Read(ExtRam, 0, ExtRam.Length); + Vdp.PostLoadState(); + PSG.PostLoadState(); if (HasYM2413) + YM2413.PostLoadState(); + } + + byte[] stateBuffer; + public byte[] SaveStateBinary() + { + if (stateBuffer == null) { - byte[] regs = new byte[YM2413.opll.reg.Length]; - reader.Read(regs, 0, regs.Length); - for (byte i = 0; i < regs.Length; i++) - YM2413.Write(i, regs[i]); + var stream = new MemoryStream(); + var writer = new BinaryWriter(stream); + SaveStateBinary(writer); + stateBuffer = stream.ToArray(); + writer.Close(); + return stateBuffer; + } + else + { + var stream = new MemoryStream(stateBuffer); + var writer = new BinaryWriter(stream); + SaveStateBinary(writer); + writer.Close(); + return stateBuffer; } } - + public IVideoProvider VideoProvider { get { return Vdp; } } public CoreComm CoreComm { get; private set; } @@ -513,9 +412,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem var VRamDomain = new MemoryDomain("Video RAM", Vdp.VRAM.Length, MemoryDomain.Endian.Little, addr => Vdp.VRAM[addr], (addr, value) => Vdp.VRAM[addr] = value); - var SaveRamDomain = new MemoryDomain("Save RAM", SaveRAM.Length, MemoryDomain.Endian.Little, - addr => SaveRAM[addr], - (addr, value) => { SaveRAM[addr] = value; SaveRamModified = true; }); + var SystemBusDomain = new MemoryDomain("System Bus", 0x10000, MemoryDomain.Endian.Little, (addr) => { @@ -532,8 +429,22 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem domains.Add(MainMemoryDomain); domains.Add(VRamDomain); - domains.Add(SaveRamDomain); domains.Add(SystemBusDomain); + + if (SaveRAM != null) + { + var SaveRamDomain = new MemoryDomain("Save RAM", SaveRAM.Length, MemoryDomain.Endian.Little, + addr => SaveRAM[addr], + (addr, value) => { SaveRAM[addr] = value; SaveRamModified = true; }); + domains.Add(SaveRamDomain); + } + if (ExtRam != null) + { + var ExtRamDomain = new MemoryDomain("Cart (Volatile) RAM", ExtRam.Length, MemoryDomain.Endian.Little, + addr => ExtRam[addr], + (addr, value) => { ExtRam[addr] = value; }); + domains.Add(ExtRamDomain); + } memoryDomains = new MemoryDomainList(domains); } @@ -644,4 +555,4 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem } } } -} +} \ No newline at end of file diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs index 69b8d83d37..031d7a1a8d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs @@ -20,11 +20,16 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem public byte[] Registers = new byte[] { 0x06, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xF0, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00 }; public byte StatusByte; + const int Command_VramRead = 0x00; + const int Command_VramWrite = 0x40; + const int Command_RegisterWrite = 0x80; + const int Command_CramWrite = 0xC0; + bool VdpWaitingForLatchByte = true; byte VdpLatch; byte VdpBuffer; ushort VdpAddress; - VdpCommand vdpCommand; + byte VdpCommand; int TmsMode = 4; bool VIntPending; @@ -145,20 +150,20 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem switch (value & 0xC0) { case 0x00: // read VRAM - vdpCommand = VdpCommand.VramRead; + VdpCommand = Command_VramRead; VdpBuffer = VRAM[VdpAddress & 0x3FFF]; VdpAddress++; break; case 0x40: // write VRAM - vdpCommand = VdpCommand.VramWrite; + VdpCommand = Command_VramWrite; break; case 0x80: // VDP register write - vdpCommand = VdpCommand.RegisterWrite; + VdpCommand = Command_RegisterWrite; int reg = value & 0x0F; WriteRegister(reg, VdpLatch); break; case 0xC0: // write CRAM / modify palette - vdpCommand = VdpCommand.CramWrite; + VdpCommand = Command_CramWrite; break; } } @@ -167,7 +172,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { VdpWaitingForLatchByte = true; VdpBuffer = value; - if (vdpCommand == VdpCommand.CramWrite) + if (VdpCommand == Command_CramWrite) { // Write Palette / CRAM int mask = VdpMode == VdpMode.SMS ? 0x1F : 0x3F; @@ -395,111 +400,33 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem } } - public void SaveStateText(TextWriter writer) + public void SyncState(Serializer ser) { - writer.WriteLine("[VDP]"); - writer.WriteLine("StatusByte {0:X2}", StatusByte); - writer.WriteLine("WaitingForLatchByte {0}", VdpWaitingForLatchByte); - writer.WriteLine("Latch {0:X2}", VdpLatch); - writer.WriteLine("ReadBuffer {0:X2}", VdpBuffer); - writer.WriteLine("VdpAddress {0:X4}", VdpAddress); - writer.WriteLine("Command " + Enum.GetName(typeof(VdpCommand), vdpCommand)); - writer.WriteLine("HIntPending {0}", HIntPending); - writer.WriteLine("VIntPending {0}", VIntPending); - writer.WriteLine("LineIntLinesRemaining {0}", lineIntLinesRemaining); - - writer.Write("Registers "); - Registers.SaveAsHex(writer); - writer.Write("CRAM "); - CRAM.SaveAsHex(writer); - writer.Write("VRAM "); - VRAM.SaveAsHex(writer); - - writer.WriteLine("[/VDP]"); - writer.WriteLine(); + ser.BeginSection("VDP"); + ser.Sync("StatusByte", ref StatusByte); + ser.Sync("WaitingForLatchByte", ref VdpWaitingForLatchByte); + ser.Sync("Latch", ref VdpLatch); + ser.Sync("ReadBuffer", ref VdpBuffer); + ser.Sync("VdpAddress", ref VdpAddress); + ser.Sync("Command", ref VdpCommand); + ser.Sync("HIntPending", ref HIntPending); + ser.Sync("VIntPending", ref VIntPending); + ser.Sync("LineIntLinesRemaining", ref lineIntLinesRemaining); + ser.Sync("Registers", ref Registers, false); + ser.Sync("CRAM", ref CRAM, false); + ser.Sync("VRAM", ref VRAM, false); + ser.EndSection(); } - public void LoadStateText(TextReader reader) + public void PostLoadState() { - while (true) - { - string[] args = reader.ReadLine().Split(' '); - if (args[0].Trim() == "") continue; - if (args[0] == "[/VDP]") break; - if (args[0] == "StatusByte") - StatusByte = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "WaitingForLatchByte") - VdpWaitingForLatchByte = bool.Parse(args[1]); - else if (args[0] == "Latch") - VdpLatch = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "ReadBuffer") - VdpBuffer = byte.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "VdpAddress") - VdpAddress = ushort.Parse(args[1], NumberStyles.HexNumber); - else if (args[0] == "Command") - vdpCommand = (VdpCommand)Enum.Parse(typeof(VdpCommand), args[1]); - else if (args[0] == "HIntPending") - HIntPending = bool.Parse(args[1]); - else if (args[0] == "VIntPending") - VIntPending = bool.Parse(args[1]); - else if (args[0] == "LineIntLinesRemaining") - lineIntLinesRemaining = int.Parse(args[1]); - else if (args[0] == "Registers") - Registers.ReadFromHex(args[1]); - else if (args[0] == "CRAM") - { - CRAM.ReadFromHex(args[1]); - UpdatePrecomputedPalette(); - } - else if (args[0] == "VRAM") - { - VRAM.ReadFromHex(args[1]); - for (ushort i = 0; i < VRAM.Length; i++) - UpdatePatternBuffer(i, VRAM[i]); - } - - else - Console.WriteLine("Skipping unrecognized identifier " + args[0]); - } for (int i = 0; i < Registers.Length; i++) WriteRegister(i, Registers[i]); - } - public void SaveStateBinary(BinaryWriter writer) - { - writer.Write(StatusByte); - writer.Write(VdpWaitingForLatchByte); - writer.Write(VdpLatch); - writer.Write(VdpBuffer); - writer.Write(VdpAddress); - writer.Write((byte)vdpCommand); - writer.Write(HIntPending); - writer.Write(VIntPending); - writer.Write((short)lineIntLinesRemaining); - writer.Write(Registers); - writer.Write(CRAM); - writer.Write(VRAM); - } - - public void LoadStateBinary(BinaryReader reader) - { - StatusByte = reader.ReadByte(); - VdpWaitingForLatchByte = reader.ReadBoolean(); - VdpLatch = reader.ReadByte(); - VdpBuffer = reader.ReadByte(); - VdpAddress = reader.ReadUInt16(); - vdpCommand = (VdpCommand)Enum.ToObject(typeof(VdpCommand), reader.ReadByte()); - HIntPending = reader.ReadBoolean(); - VIntPending = reader.ReadBoolean(); - lineIntLinesRemaining = reader.ReadInt16(); - Registers = reader.ReadBytes(Registers.Length); - CRAM = reader.ReadBytes(CRAM.Length); - VRAM = reader.ReadBytes(VRAM.Length); - UpdatePrecomputedPalette(); for (ushort i = 0; i < VRAM.Length; i++) UpdatePatternBuffer(i, VRAM[i]); - for (int i = 0; i < Registers.Length; i++) - WriteRegister(i, Registers[i]); + + UpdatePrecomputedPalette(); } public int[] GetVideoBuffer() @@ -534,13 +461,5 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { get { return Palette[BackdropColor]; } } - - enum VdpCommand - { - VramRead, - VramWrite, - RegisterWrite, - CramWrite - } } } diff --git a/output/gamedb/gamedb_sega_gg.txt b/output/gamedb/gamedb_sega_gg.txt index 7b00d25e9c..8747f6f4b4 100644 --- a/output/gamedb/gamedb_sega_gg.txt +++ b/output/gamedb/gamedb_sega_gg.txt @@ -1,181 +1,183 @@ 4E3DFE079044737F26153615E5155214 5 in 1 Funpak (U) GG USA -DA0523E29F893FB81E5F2E89B2FB240A Aa Harimanada (J) GG Japan +DA0523E29F893FB81E5F2E89B2FB240A Aa Harimanada (J) GG Sports Japan F4F3211738002369B9ADA7A099E33A45 The Addams Family (W) GG World A684CBA5F11C4E4E3E6CB71A0D73C702 The Adventures of Batman & Robin (UE) GG USA;Europe -B6FB54E60F8992DAAA35E98A712FF2CB Aerial Assault (W) GG World -F1DEE7875668C536F0434217A67BA2F4 Aerial Assault (J) (Rev 1) GG Japan +B6FB54E60F8992DAAA35E98A712FF2CB Aerial Assault (W) GG GGLink World +F1DEE7875668C536F0434217A67BA2F4 Aerial Assault (J) (Rev 1) GG GGLink Japan 1AB3A94109AF90A333A68479A02A5643 Aladdin (UE) GG Disney USA;Europe 258ABBCD90FE78E19C53C39CE9150106 Aladdin (J) GG Disney Japan 653310B476CAB68EEB8D3520C26B9755 Alien 3 (UE) GG USA;Europe 25DECD5633847246B38FB9188496D2C8 Alien 3 (J) GG Japan -6C29FC1BAE1051774E9A83098F55BD4E Alien Syndrome (UE) GG USA;Europe -DF495096E2D7FF9E2C13945E2A2BACBA Alien Syndrome (J) GG Japan -D06841CB70D06AA9801390A280FA44C0 Andre Agassi Tennis (U) GG USA +6C29FC1BAE1051774E9A83098F55BD4E Alien Syndrome (UE) GG Arcade USA;Europe +DF495096E2D7FF9E2C13945E2A2BACBA Alien Syndrome (J) GG Arcade Japan +D06841CB70D06AA9801390A280FA44C0 Andre Agassi Tennis (U) GG Sports;Tennis USA 647847FE498841762625AE9D604B9018 Arcade Classics (U) GG USA -6AE0A492CC0427D4097A7B4336CAEDD2 Arch Rivals (U) GG USA +6AE0A492CC0427D4097A7B4336CAEDD2 Arch Rivals (U) GG Sports;Basketball USA CE3E5094025B10C3885FF1DA53A46D2F Arena (UE) GG USA;Europe E786FB76FB3808A7B4906AA3BA9FF1A7 Ariel the Little Mermaid (UE) GG Disney USA;Europe -45E0159738CBBAAF9F2EF7CC2AD02FCD Arliel - Crystal Densetsu (J) GG Japan +45E0159738CBBAAF9F2EF7CC2AD02FCD Arliel - Crystal Densetsu (J) GG Strategy GGLink Japan 21D000EBA49FA3528EAC46A2F9ADC3A7 Asterix and the Great Rescue (U) GG USA 2446ABF366B4D28E88FD9431E84AC63F Asterix and the Great Rescue (E) (En,Fr,De,Es,It) GG Europe 2FD39F40BB06026F414E0CC9FF549ACA Asterix and the Secret Mission (E) (En,Fr,De) GG Europe 71E87C98E849C71DFD9A21A4A9FF56B4 Ax Battler - A Legend of Golden Axe (UE) GG USA;Europe 1D8CC7E9A742312294FC1DACE252907F Ax Battler - A Legend of Golden Axe (UE) (v2.0) (Beta) GG USA;Europe -2AA1025039E174F7E5168CE09CDE3113 Ax Battler - Golden Axe Densetsu (J) GG Japan +2AA1025039E174F7E5168CE09CDE3113 Ax Battler - A Legend of Golden Axe (J) GG Japan 1539563613AE8CDB08BBFE372B3AE1F4 Ayrton Senna's Super Monaco GP II (UE) GG USA;Europe 5843ABEA9BEFF14EF6FE840CE59DFAA0 Ayrton Senna's Super Monaco GP II (UE) (Beta) GG USA;Europe 2FB31A42D550A5C9006956F208DB4866 Ayrton Senna's Super Monaco GP II (J) GG Japan -55B9B96F12E1786DC293A1C45768F013 Baku Baku Animal - Sekai Shiikugakari Senshu-ken (J) GG Japan -3FF5A4888076E7A5905BC565563C3692 Baku Baku Animal (U) GG USA -F5F83E9E94CB99645C42CC4D41C0FB17 Baku Baku Animal (E) GG Europe -68CE612E422707B6C0DE7508F3D0C8BE Barbie Super Model (Unknown) (Proto) GG +3FF5A4888076E7A5905BC565563C3692 Baku Baku Animal (U) GG GGLink USA +F5F83E9E94CB99645C42CC4D41C0FB17 Baku Baku Animal (E) GG GGLink Europe +55B9B96F12E1786DC293A1C45768F013 Baku Baku Animal (J) GG GGLink Japan +68CE612E422707B6C0DE7508F3D0C8BE Barbie Super Model (Proto) GG +A9DAC5C7F2DC324232C3B5A3263B761A Bart vs. the Space Mutants (UE) GG USA;Europe +B71C156BB1FCFA6C3C48924A7B3747FF Bart vs. the World (W) GG World 5F263DE21F316A2A318DD6D5F732B2C8 Bartman Meets Radioactive Man (U) GG USA 6E8F14A7AB173CAC90317D390FF8D63B Batman Forever (W) GG World 1E8CFD2F30E9AD733F602CF2DE696BA9 Batman Returns (W) GG World -3190DA5093D53B220BF15229B5299D42 Batter Up (UE) GG USA;Europe -BA836AE19E88F6354D746A86582BEFF8 Battleship (UE) GG USA;Europe +3190DA5093D53B220BF15229B5299D42 Batter Up (UE) GG Sports;Baseball GGLink USA;Europe +BA836AE19E88F6354D746A86582BEFF8 Battleship (UE) GG Board Game USA;Europe 643536BFAF945E8FA8A22DE8D4653D83 Battletoads (U) GG USA 2B4EB4C0FDDD1753DAAC8FD8E043E883 Battletoads (JE) GG Europe;Japan 116EA358051E46F4829BAD566E14B28B Beavis and Butt-Head (UE) GG USA;Europe F2F728487E55EEDB774C212796C554A4 Beavis and Butt-Head (UE) (Beta) GG USA;Europe 0063255819682649ED682A50A0E8A440 The Berenstain Bears' Camping Adventure (U) GG USA -B185DB77AA6A448EB9B8C60F1CAB8F27 Berlin no Kabe (J) GG Japan +B185DB77AA6A448EB9B8C60F1CAB8F27 Berlin no Kabe (J) GG GGLink Japan 33CA01D639AEF0B2FECF2D059175ABBE Bishoujo Senshi Sailor Moon S (J) GG Japan 3608E04A697B3C6B5857B5D3F3A58CCA Bonkers Wax Up! (UE) GG Disney USA;Europe EBE94E98FD693B69F323E31AD8131163 Bram Stoker's Dracula (U) GG USA 016E9447E43CC042443F0727721A2E4A Bram Stoker's Dracula (E) GG Europe -4F08CAB3E252C2E3979EF33E9E59F294 Bubble Bobble (UE) GG USA;Europe +4F08CAB3E252C2E3979EF33E9E59F294 Bubble Bobble (UE) GG GGLink USA;Europe 04770C2C01095A6E3FDE211A125D8964 Bugs Bunny in Double Trouble (UE) GG USA;Europe -50A41B6B8062095C142ACD186B6118C9 Bust-A-Move (UE) GG USA;Europe -F7A8E4770C519175794522F66D42B27D Buster Ball (J) GG Japan -A729ED9B55FD8496B807D39C3BB9299E Buster Fight (J) GG Japan +50A41B6B8062095C142ACD186B6118C9 Bust-A-Move (UE) GG GGLink USA;Europe +F7A8E4770C519175794522F66D42B27D Buster Ball (J) GG GGLink Japan +A729ED9B55FD8496B807D39C3BB9299E Buster Fight (J) GG GGLink Japan BAE2D6EB22802A56C17F9BD67E3C892E Caesars Palace (U) GG USA -DFB20211EF127B605849ABFD85300AFC Captain America and the Avengers (UE) GG USA;Europe +DFB20211EF127B605849ABFD85300AFC Captain America and the Avengers (UE) GG Marvel USA;Europe 93EE0C56D725DAA0A79DCE458FF54E5E Car Licence (J) GG Japan 3072B95CAFF526A8A7A7B7F9A23F9383 Casino Funpak (U) GG USA 096E525C29AF9F5A0A0DDD8B67DD8FBF Chakan (UE) GG USA;Europe -4E50AB4ACE12827B73AC23C47AAF9B85 Championship Hockey (E) GG Europe +4E50AB4ACE12827B73AC23C47AAF9B85 Championship Hockey (E) GG Sports;Hockey Europe +C72556C76D431B545DD56BDCC536A89F Chase H.Q. (U) GG Racing USA 63AF90497BDAC40CE4217C5133037A51 Cheese Cat-Astrophe Starring Speedy Gonzales (E) (En,Fr,De,Es) GG Europe -B24D5C5548ACB3B35AAF02802B3BB7D5 The Chessmaster (UE) GG USA;Europe +B24D5C5548ACB3B35AAF02802B3BB7D5 The Chessmaster (UE) GG Board Game USA;Europe A51438E3BA8C78DF665DF05B6310A38A Chicago Syndicate (UE) GG USA;Europe E7B6F5ACB7D5683384934E00C2C7FA09 Choplifter III (U) GG USA BB6558532D5EDA87C93D7FE8EB8EE24C Chuck Rock II - Son of Chuck (U) GG USA 8346EE6A9687FCAF3CA3714D55CE6E9F Chuck Rock II - Son of Chuck (E) GG Europe 86A3221D3D74133C84F658939FD6E928 Chuck Rock (W) GG World D34E94DC571D7782283ABB1CC5A36C7A Chuck Rock (W) (Beta) GG World -30D140CBA0604578382CFF96ACA09F78 CJ Elephant Fugitive (E) GG Europe +30D140CBA0604578382CFF96ACA09F78 CJ Elephant Fugitive (E) GG CMMapper;GGLink Europe F03AD48294C095032909B6BA8F0E365F Cliffhanger (U) GG USA -DABA20A2E2ACC99CD7824CA9DE42AF46 Clutch Hitter (U) GG USA +DABA20A2E2ACC99CD7824CA9DE42AF46 Clutch Hitter (U) GG Sports;Baseball GGLink USA DBEDE5C20828E3D251B05356D9176C79 Coca-Cola Kid (J) GG Japan -90BD4681E3E4B07445EAF35E83B223DB Columns (UE) GG USA;Europe -680682AAA9B7EAE0642E4B9C4EF80F59 Columns (J) (En) GG Japan -36B33D28235B4C9439AB0F62AB1C97C4 Columns (J) (En) (Rev 1) GG Japan +90BD4681E3E4B07445EAF35E83B223DB Columns (UE) GG Puzzle GGLink USA;Europe +680682AAA9B7EAE0642E4B9C4EF80F59 Columns (J) (En) GG Puzzle GGLink Japan +36B33D28235B4C9439AB0F62AB1C97C4 Columns (J) (En) (Rev 1) GG Puzzle GGLink Japan 7F55C7E4696A9AD316E57C3F14A77F39 Cool Spot (U) GG USA 1EE49B56F0C349CC63EB0A60602F160E Cool Spot (E) GG Europe 0AD508B2A076990B49AE2BCDA0F1E9E7 Cosmic Spacehead (E) GG CMMapper Europe -41EEC91E3C4E546D93053F2C234517A6 Crayon Shin-chan - Taiketsu! Kantam Panic!! (J) GG Japan -0336BD86C59096A6B9A069EC0DDD94B2 Crazy Faces (Unknown) (Proto) GG -35D3FC09FCF22E35DB4BAC8CEE9967F3 Crystal Warriors (UE) GG USA;Europe +41EEC91E3C4E546D93053F2C234517A6 Crayon Shin-chan - Taiketsu! Kantam Panic!! (J) GG GGLink Japan +0336BD86C59096A6B9A069EC0DDD94B2 Crazy Faces (Proto) GG +35D3FC09FCF22E35DB4BAC8CEE9967F3 Crystal Warriors (UE) GG Strategy SRAM=8192;GGLink USA;Europe AB8C20389ABE4EE0026D63B9294BFCC0 Cutthroat Island (UE) GG USA;Europe C63C221F388D25B51CB9DFA37D1AC91A Cutthroat Island (UE) (Beta) GG USA;Europe 1B079DED7729472B4F4039612C3112F2 Daffy Duck in Hollywood (E) (En,Fr,De,Es,It) GG Europe CD792CF0D4E8EBB6F77A906AC0744B66 Deep Duck Trouble Starring Donald Duck (UE) GG Disney USA;Europe -8430050C60DB46B3887CF7D7CF2F206F Defenders of Oasis (UE) GG USA;Europe -503E2946DCF3CBA80A7264EBC4793AFD Defenders of Oasis (UE) (Beta) GG USA;Europe -5C6C0FD3D95F74B03D084DDED29C6BCB Desert Speedtrap Starring Road Runner and Wile E. Coyote (U) GG USA -91AF8B30E432D8EACF1F4A0670DDF84F Desert Speedtrap Starring Road Runner and Wile E. Coyote (E) (En,Fr,De,Es,It) GG Europe -ECFCB1F193AB20547E3DC1F4304EF21E Desert Strike - Return to the Gulf (U) GG USA +73137355568815F9B5D75CCD5557B203 Deep Duck Trouble Starring Donald Duck (J) GG Disney Japan +8430050C60DB46B3887CF7D7CF2F206F Defenders of Oasis (UE) GG SRAM=8192 USA;Europe +503E2946DCF3CBA80A7264EBC4793AFD Defenders of Oasis (UE) (Beta) GG SRAM=8192 USA;Europe +DFEA773BE248F6AA84EACAB911AC9316 Defenders of Oasis (J) GG SRAM=8192 Japan +5C6C0FD3D95F74B03D084DDED29C6BCB Desert Speedtrap Starring Road Runner and Wile E. Coyote (U) GG SRAM=8192 USA +91AF8B30E432D8EACF1F4A0670DDF84F Desert Speedtrap Starring Road Runner and Wile E. Coyote (E) (En,Fr,De,Es,It) GG SRAM=8192 Europe +ECFCB1F193AB20547E3DC1F4304EF21E Desert Strike (U) GG USA A5D8F63BDA80B2D0CF587655A389AE4C Desert Strike (E) (En,Fr,De,Es) GG Europe F0CEED28D0E83BC4ADC688D06D12BF2E Devilish (U) GG USA E3DDA1FE814C22C102F0714D48D27DE6 Devilish (E) GG Europe BC3B402B546B9561C79E3373AEE97A9C Devilish (J) GG Japan -73137355568815F9B5D75CCD5557B203 Donald Duck no 4-Tsu no Hihou (J) GG Japan -D2930D3316E293700D2CEDC4125CB9A3 Donald Duck no Lucky Dime (J) GG Japan -34E9B284E61FB9A2CAD4878451579295 Donald no Magical World (J) (En,Ja) GG Japan -5DAE999E98312E4CB5962041DDEA351F Doraemon - Waku Waku Pocket Paradise (J) GG Japan +5DAE999E98312E4CB5962041DDEA351F Doraemon - Waku Waku Pocket Paradise (J) GG GGLink Japan B45D73E40CE8F6E76DCED24EE921871A Double Dragon (UE) GG USA;Europe 662D42206945815AE7ACF13E406EFD9B Double Dragon (UE) (Beta) GG USA;Europe -8FDBA752802F09CFA1583BF0192E3554 Dr. Franken (Unknown) (Proto) GG -6565DDCB2E41BF9CE5771A62D30AA700 Dr. Robotnik's Mean Bean Machine (UE) GG USA;Europe +8FDBA752802F09CFA1583BF0192E3554 Dr. Franken (Proto) GG +6565DDCB2E41BF9CE5771A62D30AA700 Dr. Robotnik's Mean Bean Machine (UE) GG Puzzle GGLink USA;Europe 81E7BEA1C445540544002A5CCF91FE3C Dragon - The Bruce Lee Story (U) GG USA C1473DFB6C51FBBC0632FE60D8438FFC Dragon - The Bruce Lee Story (E) GG Europe -DA0B9E94FFB9C3930501C7A7A90FBF18 Dragon Crystal - Tsurani no Meikyuu (J) GG Japan 8431BACCD169025F79C9CBC44E31622D Dragon Crystal (UE) GG USA;Europe -65DF09530F9C8F02AB11982228D7D18E Dropzone (E) GG Europe -1D1C50CDBFE605A37D5DCF1250A951DF Dunk Kids (J) GG Japan +DA0B9E94FFB9C3930501C7A7A90FBF18 Dragon Crystal (J) GG Japan +65DF09530F9C8F02AB11982228D7D18E Dropzone (E) GG CMMapper Europe +1D1C50CDBFE605A37D5DCF1250A951DF Dunk Kids (J) GG Sports;Basketball GGLink Japan 2DA61F019F30EB0795CFD6EB9D5B54C6 Dynamite Headdy (UE) GG USA;Europe 79A0D819E9CDDEBCB80E28A174FF2005 Dynamite Headdy (J) GG Japan C25AF3925FD6973AF62BDD6D0C5F61CA Earthworm Jim (U) GG USA E35A0B3D9A4A3BB6B2E72FAB5A8C1712 Earthworm Jim (E) GG Europe 8F8CBAEF1A8E1BECFCC7F07B134A3D83 Ecco - The Tides of Time (UE) GG USA;Europe -E4E654AA1730565220120844DAD6B444 Ecco the Dolphin II (J) GG Japan +E4E654AA1730565220120844DAD6B444 Ecco - The Tides of Time (J) GG Japan CCD970B22303887734FAFB8E45B1E43F Ecco the Dolphin (UE) GG USA;Europe A506FC04C7A0DFAF37423FF0A38AEB2E Ecco the Dolphin (J) GG Japan E97C20B86EA73248CC7AED602D46C3A4 Ernie Els Golf (E) (En,Fr,De,Es,It) GG Sports;Golf CMMapperWithRam Europe -C58D6291DA8A4919328B8F42BE8640A7 Eternal Legend - Eien no Densetsu (J) GG Japan -4E63ABB36BE8D86B94B34846B16D9FA3 Evander Holyfield's 'Real Deal' Boxing (UE) GG USA;Europe -309ABE6822C52DF971856912C77A57CC F1 - World Championship Edition (E) GG Europe -93B3E1B682474FFD9985C0A5688D45BF F1 (UE) GG USA;Europe +C58D6291DA8A4919328B8F42BE8640A7 Eternal Legend (J) GG SRAM=8192 Japan +4E63ABB36BE8D86B94B34846B16D9FA3 Evander Holyfield's 'Real Deal' Boxing (UE) GG Sports;Boxing GGLink USA;Europe +309ABE6822C52DF971856912C77A57CC F1 - World Championship Edition (E) GG Racing Europe +93B3E1B682474FFD9985C0A5688D45BF F1 (UE) GG Racing USA;Europe 69CC38014650BDD0AF0A2B7D7E9C46EC F-15 Strike Eagle (UE) GG USA;Europe -8DCFAA8A12425A56F5DE7518B691158B Faceball 2000 (J) GG Japan +8DCFAA8A12425A56F5DE7518B691158B Faceball 2000 (J) GG GGLink Japan 784F3FF02E544E3A9CF18B3B1DA1F062 Factory Panic (E) GG Europe +4D965F99BE3EDD9593AF1C365D6A2653 Factory Panic (J) GG Japan 9C314C791AD0A98CDA6BD7D39C0A2774 Fantasy Zone (U) GG USA 4C6C42493B5AF22540E6C2014D2C367A Fantasy Zone (JE) GG Europe;Japan -4292C099F98CC0C6D03025F0729F64DF Fatal Fury Special (U) GG USA -68A033D75E20600787F2FC031C1DD1E3 Fatal Fury Special (E) GG Europe -9A70ADE3CC8647EE1A926AE71BB7FE52 FIFA International Soccer (UE) GG USA;Europe -6B60449B8C589AA2361FF6E67EAE18F6 FIFA International Soccer (J) GG Japan -4338306D35219DA89E1F6CC4550FD8A3 FIFA Soccer 96 (UE) (En,Fr,De,Es) GG USA;Europe -50D9E83B34B960D296F59CF08F8170C6 Foreman for Real (W) GG World -B3AF97A5B1621AF61C633F1CCB23F90E Frank Thomas Big Hurt Baseball (U) GG USA +4292C099F98CC0C6D03025F0729F64DF Fatal Fury Special (U) GG GGLink USA +68A033D75E20600787F2FC031C1DD1E3 Fatal Fury Special (E) GG GGLink Europe +203C6FAA7508C8A88EE6B775E365D89C Fatal Fury Special (J) GG GGLink Japan +9A70ADE3CC8647EE1A926AE71BB7FE52 FIFA International Soccer (UE) GG Sports;Soccer GGLink USA;Europe +6B60449B8C589AA2361FF6E67EAE18F6 FIFA International Soccer (J) GG Sports;Soccer GGLink Japan +4338306D35219DA89E1F6CC4550FD8A3 FIFA Soccer 96 (UE) (En,Fr,De,Es) GG Sports;Soccer USA;Europe +50D9E83B34B960D296F59CF08F8170C6 Foreman for Real (W) GG Sports;Boxing World +B3AF97A5B1621AF61C633F1CCB23F90E Frank Thomas Big Hurt Baseball (U) GG Sports;Baseball USA ED0D0917984F2CC8AA560C1BF55EB95F Fray - Shugyou Hen (J) GG Japan -FB2F22BAFFDBE79CD255D8EC9CB133AD Fred Couples' Golf (U) GG USA -3A228F1B9D55146445CD981D3949D715 Fred Couples' Golf (J) GG Japan +FB2F22BAFFDBE79CD255D8EC9CB133AD Fred Couples' Golf (U) GG Sports;Golf USA +3A228F1B9D55146445CD981D3949D715 Fred Couples' Golf (J) GG Sports;Golf Japan 0D78EA34987AE32F1CE844A3F647189F Frogger (U) (Proto) GG USA 087039A3C04F4A3AE2F09BC258BE00D1 From TV Animation - Slam Dunk - Shouri e no Starting 5 (J) GG Japan -7F3A990141B86A8B66CC9E761F1C1BA0 Galaga 2 (E) GG Europe +7F3A990141B86A8B66CC9E761F1C1BA0 Galaga '91 (E) GG Europe C50BC608D2F6708E255E98C324E93A13 Galaga '91 (J) GG Japan E0B96E01749B6B44FA53F10A47E3D105 Gamble Panic (J) GG Japan 03F04A22E61460682AA1C7CBA84565D2 Gambler Jiko Chuushinha (J) GG Japan -4D965F99BE3EDD9593AF1C365D6A2653 Ganbare Gorby! (J) GG Japan 8766AD6AB161FFC7796A543325A82FB6 Garfield - Caught in the Act (UE) GG USA;Europe -203C6FAA7508C8A88EE6B775E365D89C Garou Densetsu Special (J) GG Japan -7BEFEAD333E6898CAAB966AFFB5E6F83 Gear Stadium Heiseiban (J) GG Japan -681B18412B7861C02C2C7110114A3216 Gear Stadium (J) GG Japan +7BEFEAD333E6898CAAB966AFFB5E6F83 Gear Stadium Heiseiban (J) GG Sports;Baseball GGLink Japan +681B18412B7861C02C2C7110114A3216 Gear Stadium (J) GG Sports;Baseball GGLink Japan DA9D059D844104D2A4D05F01AA4FF9FC Gear Works (U) GG USA -C5D2AADB57D9827A24C69A80014B4ECF George Foreman's KO Boxing (UE) GG USA;Europe -D5836EC389EC2C81BD54728B96B87152 GG Aleste II ~ Power Strike II (JE) GG Europe;Japan +C5D2AADB57D9827A24C69A80014B4ECF George Foreman's KO Boxing (UE) GG Sports;Boxing GGLink USA;Europe +D5836EC389EC2C81BD54728B96B87152 GG Aleste II (JE) GG Europe;Japan 43301E7C15FE11F66B29B00E6EC47A52 GG Aleste (J) GG Japan E768A7C45F8EA390D6091032FDF6DCBE GG Doraemon - Noranosuke no Yabou (J) GG Japan 3DBD51CE27C7EEEE98AAECCDB96AFFB6 GG Portrait - Pai Chen (J) GG Japan 82D3C23CF9617174AA47BED8E76438DF GG Portrait - Yuuki Akira (J) GG Japan -21D2E4E7C508E6ABBB12BB96C7AAC868 The GG Shinobi (J) GG Japan -EC61986C03B1BB9C1862BDDD6432BF26 G-LOC - Air Battle (UE) GG USA;Europe -28962F99E33C4F7FB8E513B539FB28F0 G-LOC - Air Battle (J) GG Japan -D8C531467266D86139D0EC4D3CC79439 G-LOC - Air Battle (J) (Rev 1) GG Japan -E550267F3AE767BED5D0E2A126F44A10 Godzilla - Kaijuu Daishingeki (J) GG Japan -6FA101FB69DA89A922B1B99F36E515BC GP Rider (UE) GG USA;Europe -6427D14DA2501E16DA16930622EE8846 GP Rider (J) GG Japan +D3A436B1FB64FD6295A30CC12BA6BED9 Global Gladiators (UE) GG USA;Europe +EC61986C03B1BB9C1862BDDD6432BF26 G-LOC - Air Battle (UE) GG GGLink USA;Europe +28962F99E33C4F7FB8E513B539FB28F0 G-LOC - Air Battle (J) GG GGLink Japan +D8C531467266D86139D0EC4D3CC79439 G-LOC - Air Battle (J) (Rev 1) GG GGLink Japan +E550267F3AE767BED5D0E2A126F44A10 Godzilla - Kaijuu Daishingeki (J) GG SRAM=8192 Japan +6FA101FB69DA89A922B1B99F36E515BC GP Rider (UE) GG Racing GGLink USA;Europe +6427D14DA2501E16DA16930622EE8846 GP Rider (J) GG Racing GGLink Japan E6C364FCE0F71A9EB9E5474CD84C2067 Greendog - The Beached Surfer Dude! (UE) GG USA;Europe 00299A180A9EDEF575A228A1CEF65318 Griffin (J) GG Japan C46D46F3AB4873CB1ED7AE8B9B70F2B4 Gunstar Heroes (J) GG Japan 1EF93397C3C6D2049B0701D69255A22B Halley Wars (UE) GG USA;Europe 9B26A17F41F2F0DC508D0815945E2634 Halley Wars (J) GG Japan -AA52A741B2952C3713AB791E659C37B5 Head Buster (J) GG Japan -B963441C5EDAD8396B857A9AD8448995 Heavy Weight Champ (J) GG Japan +AA52A741B2952C3713AB791E659C37B5 Head Buster (J) GG Strategy GGLink Japan +B963441C5EDAD8396B857A9AD8448995 Heavy Weight Champ (J) GG Sports;Boxing GGLink Japan 8747C4CC07059D97BC597C5EB757CBD9 Home Alone (UE) GG USA;Europe -A299B81A9A5455BFFF538F669A5E7A0D Honoo no Toukyuuji - Dodge Danpei (J) GG Japan +A299B81A9A5455BFFF538F669A5E7A0D Honoo no Toukyuuji - Dodge Danpei (J) GG Sports;Dodgeball Japan 5B0659FC95D81F10400BC449C2DA251B Hook (U) GG USA CE8BF6E6BAEC621D9CC8302F2B0565B4 Hook (E) GG Europe 2F36C3CEA09A1D394273B9607CCD8C60 Hurricanes (E) GG Europe 59ADAABDDE5BBFF98CD59892E484B695 Hyokkori Hyoutan-jima - Hyoutan-jima no Daikoukai (J) GG Japan -8EC099B2001155815841E2911C9BAB9F Hyper Pro Yakyuu '92 (J) GG Japan -7E28DC24CB77ACCAFEABA718917961EC Ichidant~R GG (J) GG Japan +8EC099B2001155815841E2911C9BAB9F Hyper Pro Yakyuu '92 (J) GG Sports;Baseball GGLink Japan +7E28DC24CB77ACCAFEABA718917961EC Ichidant~R GG (J) GG GGLink Japan A999C2F72C71C22BE50E343E54FF4D73 In the Wake of Vampire (J) GG Japan 4D7FAFE13D1AA4C9EA893BD4EC2F8332 The Incredible Crash Dummies (W) GG World -7B239C8AE257CB78C46A8AFFA9BC8226 The Incredible Hulk (UE) GG USA;Europe +7B239C8AE257CB78C46A8AFFA9BC8226 The Incredible Hulk (UE) GG Marvel USA;Europe 9D396418BE6587BED4867070D049CE98 Indiana Jones and the Last Crusade (UE) GG USA;Europe -F9221499B42B1B04D5C9F9814FD1EFCD Iron Man X-O Manowar in Heavy Metal (UE) GG USA;Europe +F9221499B42B1B04D5C9F9814FD1EFCD Iron Man X-O Manowar in Heavy Metal (UE) GG Marvel USA;Europe 63BB5A1A959CDC79BFBE05B022F64EBF The Itchy & Scratchy Game (UE) GG USA;Europe D4034F6604C5DC04EE06E78B913C47FC J.League GG Pro Striker '94 (J) GG Japan 2B4BA7D870B8A57E769F9E0CB605C536 J.League Soccer - Dream Eleven (J) GG Japan @@ -186,67 +188,66 @@ D4034F6604C5DC04EE06E78B913C47FC J.League GG Pro Striker '94 (J) GG Japan 9B95B6E6609DAA8EA413F223F426C8FF Jang Pung II (K) (Unl) GG Korea 5D1351B4F7579D36A1250F5B5F5A507F Jeopardy! - Sports Edition (UE) GG USA;Europe 6E87D0107228AE1B5C582F8595992152 Jeopardy! (U) GG USA -C74F379A93E9F667C375A316F8021AFC Joe Montana Football (UE) GG USA;Europe -5227E282029D0E31BB16949B52A041BA Joe Montana Football (J) GG Japan -D9393AFCE9CC368EB1B0217CFF994C8E Journey from Darkness - Strider Returns (UE) GG USA;Europe +C74F379A93E9F667C375A316F8021AFC Joe Montana Football (UE) GG Sports;Football GGLink USA;Europe +5227E282029D0E31BB16949B52A041BA Joe Montana Football (J) GG Sports;Football GGLink Japan CFDA45DE60237EE360D4C40A1404CFCA Judge Dredd (UE) GG USA;Europe -7B089A66ACC807A71ADC58C9BD679ECC Junction (U) GG USA -7DD2EF762D2284A0E551447A9EE11458 Junction (J) (En) GG Japan +7B089A66ACC807A71ADC58C9BD679ECC Junction (U) GG Puzzle USA +7DD2EF762D2284A0E551447A9EE11458 Junction (J) (En) GG Puzzle Japan 9212DDA9031449AFFFA6903921286BEA The Jungle Book (U) GG Disney USA 895E858A9ED0204284FDF247542EB706 The Jungle Book (E) GG Disney Europe F678A27147F02B86D409E9317BAB46B1 Jungle Strike (U) GG USA A3158BAAB261C5DDBCD4328D01E33A94 Jurassic Park (UE) GG USA;Europe 5797A3EFC5BD691A29CD52E8315DA9B9 Jurassic Park (J) GG Japan -BBF7DCB006A49C087EE71A3684A5A339 Kaitou Saint Tail (J) GG Japan -6D8C0F7F54A59C87FC5A8F279B72A922 Kawasaki Superbike Challenge (UE) GG USA;Europe +BBF7DCB006A49C087EE71A3684A5A339 Kaitou Saint Tail (J) GG GGLink Japan +6D8C0F7F54A59C87FC5A8F279B72A922 Kawasaki Superbike Challenge (UE) GG Racing USA;Europe D8CB893B1CF1AE9555AD9B7EAAD469E0 Kenyuu Densetsu Yaiba (J) GG Japan -686CBD73FF62C8DECDEF3E76890A3E83 Kick & Rush (J) GG Japan -3393B5A16EDD56194B1BB869E6324CB1 Kinetic Connection (J) GG Japan +686CBD73FF62C8DECDEF3E76890A3E83 Kick & Rush (J) GG Sports;Soccer GGLink Japan +3393B5A16EDD56194B1BB869E6324CB1 Kinetic Connection (J) GG SRAM=8192 Japan AC6ED281AC8E9D71AF186602951CFD7A Kishin Douji Zenki (J) GG Japan -B8969BA5F8DC60823DA59AA511A593C9 Klax (UE) GG USA;Europe +B8969BA5F8DC60823DA59AA511A593C9 Klax (UE) GG Puzzle USA;Europe 46BE87D97E42DCEEF816DD7A6AD4D018 Krusty's Fun House (UE) GG USA;Europe 15B1D9419A7529F4791D17EA3B9FA26E Kuni-chan no Game Tengoku Part 2 (J) GG Japan -9BFE375432A88A9615FCA2E90385151E Kuni-chan no Game Tengoku (J) GG Japan +9BFE375432A88A9615FCA2E90385151E Kuni-chan no Game Tengoku (J) GG GGLink Japan 4F423E63523BAFDC7311D790850ACE58 Land of Illusion Starring Mickey Mouse (UE) GG Disney USA;Europe 7813B0846E5F9C3AB5AFAB1BCB9A1F8B Land of Illusion Starring Mickey Mouse (J) GG Disney Japan 153243555C10F79CCFC854945472E5ED Last Action Hero (U) GG USA 6D106D9C80B9D0CDC4F555BE3C3677D3 Legend of Illusion Starring Mickey Mouse (UE) GG Disney USA;Europe 64BED8E7A263B89144EB68BE73CEF76C Legend of Illusion Starring Mickey Mouse (J) GG Disney Japan -49D07D8B68D59535D9B51AE5EFDBBDAC Lemmings (W) GG World -E49134DDD959298BE16A6A702EB4A7A0 Lemmings (W) (Beta) GG World +49D07D8B68D59535D9B51AE5EFDBBDAC Lemmings (W) GG GGLink World +E49134DDD959298BE16A6A702EB4A7A0 Lemmings (W) (Beta) GG GGLink World 62328F27BCDA54D1882A265BF8378688 The Lion King (U) GG Disney USA B2405427E53FC2E358EA199619154FC9 The Lion King (E) GG Disney Europe 81E5A88E8268A1B5730245A36FAC812F The Lion King (J) GG Disney Japan -68D9F394BF0DD0382A8052E60B3B8A1B Lost World, The - Jurassic Park (U) GG USA +68D9F394BF0DD0382A8052E60B3B8A1B The Lost World - Jurassic Park (U) GG USA 78A7964B341CCC4379A837EE998805C7 The Lucky Dime Caper Starring Donald Duck (UE) GG Disney USA;Europe -72CEA1D3E02B74F10293AFF3F2677683 Lunar - Sanposuru Gakuen (J) GG Japan +D2930D3316E293700D2CEDC4125CB9A3 The Lucky Dime Caper Starring Donald Duck (J) GG Disney Japan +72CEA1D3E02B74F10293AFF3F2677683 Lunar - Sanposuru Gakuen (J) GG SRAM=8192 Japan D2B82F0A23B10168E47D62D708002D53 Madden 96 (UE) GG USA;Europe 0D93A14542072DE41A616CE639437565 Madden NFL 95 (U) GG USA -AB0D1EB20AC63A984D874A885CA2588D Madou Monogatari A - Dokidoki Vacation (J) GG Japan -ABCA338C5F08D06526D09B70588ADD2C Madou Monogatari I - 3-Tsu no Madoukyuu (J) GG Japan -81A57F26B7A1CCAA21BF7678B3596CB2 Madou Monogatari II - Arle 16-Sai (J) GG Japan -B8B5305EC2F68D7BB3C9F622A13EBA7C Madou Monogatari III - Kyuukyoku Joou-sama (J) GG Japan -1294C965ABDD845F554B30B311DEE272 Madou Monogatari III - Kyuukyoku Joou-sama (J) (Rev 1) GG Japan -B19256C6716147A9744F5BD528F14450 Magic Knight Rayearth 2 - Making of Magic Knight (J) GG Japan -846D48D0F4024C8094117599D0E1EEF1 Magic Knight Rayearth (J) GG Japan -E496FF2196C372F4D6111538950D25CA Magical Puzzle Popils (W) (En,Ja) GG World +AB0D1EB20AC63A984D874A885CA2588D Madou Monogatari A - Dokidoki Vacation (J) GG SRAM=8192 Japan +ABCA338C5F08D06526D09B70588ADD2C Madou Monogatari I - 3-Tsu no Madoukyuu (J) GG SRAM=8192 Japan +81A57F26B7A1CCAA21BF7678B3596CB2 Madou Monogatari II - Arle 16-Sai (J) GG SRAM=8192 Japan +B8B5305EC2F68D7BB3C9F622A13EBA7C Madou Monogatari III - Kyuukyoku Joou-sama (J) GG SRAM=8192 Japan +1294C965ABDD845F554B30B311DEE272 Madou Monogatari III - Kyuukyoku Joou-sama (J) (Rev 1) GG SRAM=8192 Japan +B19256C6716147A9744F5BD528F14450 Magic Knight Rayearth 2 - Making of Magic Knight (J) GG SRAM=8192 Japan +846D48D0F4024C8094117599D0E1EEF1 Magic Knight Rayearth (J) GG SRAM=8192 Japan +E496FF2196C372F4D6111538950D25CA Magical Puzzle Popils (W) (En,Ja) GG Puzzle SRAM=8192 World 3AF0C6DDF5F00A493E1F159FCEDC0933 Magical Taruruuto-kun (J) GG Japan -B0C35BC53AB7C184D34E5624F69AAD24 The Majors Pro Baseball (U) GG USA +B0C35BC53AB7C184D34E5624F69AAD24 The Majors Pro Baseball (U) GG Sports;Baseball SRAM=128;GGLink USA A15C5219F766D516D1B8D9A09B9A2BB4 Mappy (J) GG Japan B83F36FD113A8F75F1A29652ACB641FC Marble Madness (UE) GG USA;Europe BA846684A66E90372C3C234955EE28BC Marko's Magic Football (E) (En,Fr,De,Es) GG Europe 78655DABD43E475C3B4D849C3F0C7046 Master of Darkness (E) GG Europe 8583950BE61FFBAF0F63DDE8DDED2AB3 Mega Man (U) GG USA -AAB2B02C831252F6A2EB369DF39F7C73 Megami Tensei Gaiden - Last Bible S (J) GG Japan -AB54600E28D866558323381F74FE2749 Megami Tensei Gaiden - Last Bible (J) GG Japan -D3A436B1FB64FD6295A30CC12BA6BED9 Mick & Mack as the Global Gladiators (UE) GG USA;Europe +AAB2B02C831252F6A2EB369DF39F7C73 Megami Tensei Gaiden - Last Bible Special (J) GG SRAM=8192;GGLink Japan +AB54600E28D866558323381F74FE2749 Megami Tensei Gaiden - Last Bible (J) GG SRAM=8192 Japan 66E41E9F596EEEC8127D12426F928791 Mickey's Ultimate Challenge (U) GG Disney USA 4ED897E5E2BD76CBE92CBBBD76AC8817 Micro Machines 2 - Turbo Tournament (E) GG Racing CMMapper;GGLink Europe C08B950E8AB836A737B07374F8235955 Micro Machines (E) GG Racind CMMapper;GGLink Europe F9ACD8F01CAA8D11150A53B37B435AA2 Mighty Morphin Power Rangers - The Movie (UE) GG USA;Europe 7FCB774AA2B207CF16D2DDFE618351C0 Mighty Morphin Power Rangers (UE) GG USA;Europe 465EAB01AB08A68A37C9C240DCA8A36C MLBPA Baseball (U) GG USA -95FB42E84A2B08ACCE481B0894EA3CEA Moldorian - Hikari to Yami no Sister (J) GG Japan +95FB42E84A2B08ACCE481B0894EA3CEA Moldorian - Hikari to Yami no Sister (J) GG SRAM=24576 Japan AA768D95B27CCB2A796379F7F01F1CE7 Monster Truck Wars (UE) GG USA;Europe 8E6934C31498569302FF3119C2496043 Monster World II - Dragon no Wana (J) GG Japan FF2BBA2287EDBD90A560DBBAAB18A260 Mortal Kombat - Shinken Kourin Densetsu (J) GG Japan @@ -254,7 +255,7 @@ FF2BBA2287EDBD90A560DBBAAB18A260 Mortal Kombat - Shinken Kourin Densetsu (J) GG 159256F5A372F2E409ECB343A3946001 Mortal Kombat II (W) GG World F9971DC9D78214F94856F6E886B1C8C2 Mortal Kombat (UE) GG USA;Europe D65E3350CBA32A42D54130C356FEB2A8 Ms. Pac-Man (U) GG USA -2896235A36C793E99EEB1D18FB2B4A0B Nazo Puyo 2 (J) GG Japan +2896235A36C793E99EEB1D18FB2B4A0B Nazo Puyo 2 (J) GG Puzzle SRAM=8192 Japan D207C9ACA1CC848C363B9F367DD9DF3B Nazo Puyo Arle no Roux (J) GG Japan 44477031655B578BEBCCC1FC3871C377 Nazo Puyo Arle no Roux (J) (Development Edition) GG Japan 1F7F13111353AEB49205BB3FC1697DD8 Nazo Puyo (J) GG Japan @@ -264,7 +265,7 @@ CFB2427A59CF67223E25AB2C46ABCA3E NBA Jam - Tournament Edition (W) GG World 3BB261C05BDA5E82708AF1C361797134 NBA Jam (UE) GG USA;Europe 51EE14347B3F3633299511FA5E637164 NBA Jam (U) (Rev 1) GG USA 8AAB7B6664B91DD272165997B6FD0161 NBA Jam (J) GG Japan -B61753DA244F213DF3D0BE198F8B7CBB Neko Daisuki! (J) GG Japan +B61753DA244F213DF3D0BE198F8B7CBB Neko Daisuki! (J) GG SRAM=8192;GGLink Japan C2CB9BA471C5CA56ACC4224B3EFE535D NFL '95 (U) GG USA B64EE38B829390DFC13CADFD1321F22E NFL Quarterback Club '96 (UE) GG USA;Europe C2D0EE20EA58F5BFCFE7DDFF05722A2D NFL Quarterback Club (W) GG World @@ -275,11 +276,11 @@ A898B1D38CD6379090EF54A2F1D37FA2 NHL Hockey (UE) GG USA;Europe DA36E835210B7F05BA2973F343A8C300 Ninku 2 - Tenkuuryuu e no Michi (J) GG Japan E9B45D6455E0753B8E0E825A36458253 Ninku Gaiden - Hiroyuki Daikatsugeki (J) GG Japan 713AE959AF3EEA55C9A3C5BD36F1ED9D Ninku (J) GG Japan -E9F8ABB1EEA7FB9D7F3FDF4EFEC986A1 Nomo Hideo no World Series Baseball (J) GG Japan +E9F8ABB1EEA7FB9D7F3FDF4EFEC986A1 Nomo Hideo no World Series Baseball (J) GG Sports;Baseball SRAM=128;GGLink Japan 985CCA80D9837BDEB6C5F593B541D025 The Ottifants (E) (En,Fr,De,Es,It) GG Europe -BF5BD4D774600A866C2620E101845DE8 Out Run Europa (E) GG Europe -31BA1DE018853EAD9B43B522DF540C0C Out Run (E) GG Europe -6D6FBA255CE324E80915F65F5D27CB14 Out Run (J) GG Japan +BF5BD4D774600A866C2620E101845DE8 Out Run Europa (E) GG Racing Europe +31BA1DE018853EAD9B43B522DF540C0C Out Run (E) GG Racing Europe +6D6FBA255CE324E80915F65F5D27CB14 Out Run (J) GG Racing Japan 948AD3BC6014CAF8C52C3C626DD70CEE Pac-Attack (UE) GG USA;Europe 64109FE1D3D3E34B2963B80685A3F28A Pac-In-Time (Unknown) (Proto) GG 8B8663CF7EF0A0BD595306FE28957441 Pac-Man (U) GG USA @@ -289,14 +290,14 @@ E6985998D25D6C4FE36C2B8041244BB4 Pac-Man (J) (En) GG Japan 60E9482350815E3BE5ADC2A59234F05A Paperboy (UE) GG USA;Europe F431BC2798FA03D51A9C45D107C66BCF Pengo (UE) GG USA;Europe 95CEA3A33A3F5915942904B4817B2010 Pengo (J) GG Japan -2ABADEB0084AF850778053B181F97A59 Pet Club Inu Daisuki! (J) GG Japan +2ABADEB0084AF850778053B181F97A59 Pet Club Inu Daisuki! (J) GG SRAM=8192 Japan 8A033A243A35FEF96E6EA99584FE1755 Pete Sampras Tennis (E) GG Europe EA4A78F2D68E63D129598A225C02684B PGA Tour 96 (UE) GG USA;Europe 4EFD19D797AAA235A397B286DEBB7A5A PGA Tour Golf II (UE) GG USA;Europe 41350F8EFDCB619D409090E7DB66AC70 PGA Tour Golf (UE) GG USA;Europe F8B93A57B35353FED3D5E5151E520609 PGA Tour Golf (U) (Rev 1) GG USA 8FAD420B7DC93CD7ED10BFC54EC04F07 Phantasy Star Adventure (J) GG Japan -54BE96CA21885145108F1C02E4D88EBA Phantasy Star Gaiden (J) GG Japan +54BE96CA21885145108F1C02E4D88EBA Phantasy Star Gaiden (J) GG RPG SRAM=8192 Japan 28F08375A5CDB864564C7D5A3207D0F3 Phantom 2040 (UE) GG USA;Europe D3E43D2779B93393D7D1D4485A1907AA Pinball Dreams (U) GG USA 7B46859570E339E54C41A921D1096585 Pocket Jansou (J) GG Japan @@ -308,9 +309,9 @@ E0E2FBD5834C04574795C923B0147F39 Pop Breaker (J) GG Japan 39D854C9902CF8CA34F32767424BE8AF Popeye no Beach Volleyball (J) GG Japan 920F469A6E365E7EA288A7EF8DC8536A Power Drive (E) GG Europe 1CE6A2D5B50098CBCC9F166F2CC44FBA Primal Rage (UE) GG USA;Europe -F9AE1762ED006C001E811FE6F072ABB7 The Pro Yakyuu '91 (J) GG Japan -45D214CD027DEE5CE2ADFCD6458DEC2C Pro Yakyuu GG League '94 (J) GG Japan -527449BC2AAC2C8A16853FAC63E60AF6 Pro Yakyuu GG League (J) GG Japan +F9AE1762ED006C001E811FE6F072ABB7 The Pro Yakyuu '91 (J) GG Sports;Baseball GGLink Japan +45D214CD027DEE5CE2ADFCD6458DEC2C Pro Yakyuu GG League '94 (J) GG Sports;Baseball SRAM=128;GGLink Japan +527449BC2AAC2C8A16853FAC63E60AF6 Pro Yakyuu GG League (J) GG Sports;Baseball SRAM=128;GGLink Japan 52CFDDC12AF6A3A64030F62CCF6ACA83 Psychic World (UE) (Rev 1) GG USA;Europe A764B44555AADB48C519E7C85BDF7895 Psychic World (J) (En) GG Japan 61C0B40329F89007AB44CC5EB29ADDFD Putt & Putter (UE) GG USA;Europe @@ -320,43 +321,42 @@ A5FCE989C4FCF6FAF37C5A1779DF8A22 Puyo Puyo (J) GG Japan DCEC1000AEA3882B218B0CC0AED5A5D8 Puzzle and Action Tanto-R (J) GG Japan 1713ECEBA681849BE8E36F5F62654405 Puzzle Bobble (J) GG Japan 42854DD79BF57019A26DDD73E12B68AC Quest for the Shaven Yak Starring Ren Hoek & Stimpy (UE) GG USA;Europe -3BB4196A872265CE31CD27F5F8800152 The Quiz Gear Fight!! (J) GG Japan -81E2A14C52EB079CA58E5704652C199D R.B.I. Baseball '94 (U) GG USA -C985B4316D8D58E48E2DC61264AB0071 Revenge of Drancon (U) GG USA -E63FF3A1086C16F7E3B2C4C63371E551 Riddick Bowe Boxing (U) GG USA -5A1D0DAEE3DC3582B0C69EC4BCCA3CA9 Riddick Bowe Boxing (J) GG Japan +3BB4196A872265CE31CD27F5F8800152 The Quiz Gear Fight!! (J) GG GGLink Japan +81E2A14C52EB079CA58E5704652C199D R.B.I. Baseball '94 (U) GG Sports;Baseball USA +C985B4316D8D58E48E2DC61264AB0071 Revenge of Drancon (U) GG Wonder Boy Series USA +E63FF3A1086C16F7E3B2C4C63371E551 Riddick Bowe Boxing (U) GG Sports;Boxing GGLink USA +5A1D0DAEE3DC3582B0C69EC4BCCA3CA9 Riddick Bowe Boxing (J) GG Sports;Boxing GGLink Japan EBCEDB0B611788408D1B27171B77AD6B Rise of the Robots (UE) GG USA;Europe 06F0A495FBB70FAD50246DA715F8ADD7 Ristar - The Shooting Star (W) GG World -18090D451DC27F8D3EDCBDBEF86A30D8 Road Rash (U) GG USA -B0CD844449604735D5C58DE6A3784EEB Road Rash (E) GG Europe +18090D451DC27F8D3EDCBDBEF86A30D8 Road Rash (U) GG Racing USA +B0CD844449604735D5C58DE6A3784EEB Road Rash (E) GG Racing Europe AE7121E6CE2831E1B700515B6060ACAF RoboCop 3 (W) GG World D19DC027E7AFF95A1ABFD0DB074E1CF2 RoboCop versus The Terminator (UE) GG USA;Europe -C05B51EA07C8017A6D12BADAEA9DAF29 Royal Stone - Hirakareshi Toki no Tobira (J) GG Japan -5A43E20C816435A080A601B0DDACAA44 Ryuukyuu (J) GG Japan +34E9B284E61FB9A2CAD4878451579295 Ronald in the Magical World (J) (En,Ja) GG Japan +C05B51EA07C8017A6D12BADAEA9DAF29 Royal Stone - Hirakareshi Toki no Tobira (J) GG SRAM=8192 Japan +5A43E20C816435A080A601B0DDACAA44 Ryuukyuu (J) GG Card Game GGLink Japan D369DCC7C7317B88D401CD7DD54AD951 S.S. Lucifer - Man Overboard! (E) GG CMMapper Europe 4898DB4B63C7024842E748FB81C95A55 Samurai Shodown (U) GG USA 71B53A4577065E11453928774A7B64B0 Samurai Spirits (J) GG Japan A469A38397A5D530313BEB549182558D Scratch Golf (U) GG USA FFDE26C2F9AB968113F87D1528BFC817 Scratch Golf (J) GG Japan -2FF122C0EB474E362CBCCFB7C72B1A38 SD Gundam - Winner's History (J) GG Japan +2FF122C0EB474E362CBCCFB7C72B1A38 SD Gundam - Winner's History (J) GG SRAM=8192;GGLink Japan 672E104C3BE3A238301ACEFFC3B23FD6 Sega Game Gear (U) (Majesco) (BIOS) GG USA 32139AB4462C6BD3FA0861BB72276DDF Sega Game Pack 4 in 1 (E) GG Europe 6CB74DC59782ECEA107C12A652B5B84B Sega Game Pack 4 in 1 (E) (Beta) GG Europe 13261FBD215F50B8D0E85F2B7AE148DD Sensible Soccer (E) GG Europe -DFEA773BE248F6AA84EACAB911AC9316 Shadam Crusader - Harukanaru Oukoku (J) GG Japan A9D1712DCA313BA021844F62EEC8A08C Shanghai II (J) GG Japan C228D31CF77BD03AC457E2D22F5B2BD1 Shanghai II (J) (Rev 1) GG Japan EA608A53121D0C905DCFE6544248C275 Shaq Fu (UE) GG USA;Europe A952A843A123092AAFBEB37B428EF6FF Shikinjou (J) GG Japan -8EAFD80D35251B5D3F07D5CAE27241C1 Shining Force Gaiden - Ensei, Jashin no Kuni e (J) GG Japan -35EF27F6B4B4DDC4A6AD6C78DB8C890B Shining Force Gaiden - Final Conflict (J) GG Japan -8857422E565412A59C77CB29550715E4 Shining Force Gaiden II - Jashin no Kakusei (J) GG Japan -0A0FA9CBCC3DB467191E907794C8C02B Shining Force II - The Sword of Hajya (U) GG USA +8EAFD80D35251B5D3F07D5CAE27241C1 Shining Force Gaiden - Ensei, Jashin no Kuni e (J) GG Strategy;RPG SRAM=16384 Japan +35EF27F6B4B4DDC4A6AD6C78DB8C890B Shining Force Gaiden - Final Conflict (J) GG Strategy;RPG SRAM=32768 Japan +8857422E565412A59C77CB29550715E4 Shining Force Gaiden II - Jashin no Kakusei (J) GG Strategy;RPG SRAM=24576 Japan +0A0FA9CBCC3DB467191E907794C8C02B Shining Force II - The Sword of Hajya (U) GG Strategy;RPG SRAM=24576 USA 48D741774004EAB9C19C1DD43758BF2B Shinobi II - The Silent Fury (W) (Ja) GG World 8FA7438DEC1403F2E9D7B1CA60B29F1A Shinobi (UE) GG USA;Europe +21D2E4E7C508E6ABBB12BB96C7AAC868 Shinobi (J) GG Japan 4F270030DD6BB1D72EBA33F1EF054B20 Side Pocket (U) GG USA -A9DAC5C7F2DC324232C3B5A3263B761A Simpsons, The - Bart vs. the Space Mutants (UE) GG USA;Europe -B71C156BB1FCFA6C3C48924A7B3747FF Simpsons, The - Bart vs. the World (W) GG World 1A796DFA3B3B9010D259506DDC4A43A6 Skweek (J) GG Japan 634A3EF93D9E93B79F194559541ADEB8 Slider (UE) GG USA;Europe 348CA8EAA37D5F468915B0CB5A558D21 The Smurfs Travel the World (E) (En,Fr,De,Es) GG Europe @@ -396,6 +396,7 @@ B24361360667C2730AE9CBE9004B54D0 Stargate (W) GG World 4290E4E83D37B142E39B2B0AD1366A8C Street Hero (U) (Proto 2) GG USA 5566E332F860DC0F9DA1507FD7FEB1CD Streets of Rage 2 (W) GG GGLink World 1ECE7480D21FB862A65233BA126282D3 Streets of Rage (W) GG GGLink World +D9393AFCE9CC368EB1B0217CFF994C8E Strider Returns (UE) GG USA;Europe BEA0F43795028285E34738C15C5DDBA9 Striker (E) (En,Fr,De,Es,It) GG Europe F2B15E50EF16B3257C5D08CA0BD17E3B Super Battletank (U) GG USA 8F1DE0CAA864BEED2A61F391795B0A10 Super Columns (UE) GG USA;Europe @@ -411,15 +412,14 @@ D378D5784B82154BDC7B36976A7C7737 Super Smash T.V. (W) GG World 1ADF05E9AC786D9B46BB8D2B8043669D Superman - The Man of Steel (E) GG Europe 61808B13D8505470B96B9F7295310BCD Superman - The Man of Steel (E) (Beta) GG Europe 63F72877317FD3C17B0D867EA3169F56 Surf Ninjas (U) GG USA -6657230E92F13ED98474523EFC29D6B3 Sylvan Tale (J) GG Japan +6657230E92F13ED98474523EFC29D6B3 Sylvan Tale (J) GG RPG SRAM=8192 Japan D459D14BADDFA9F8A69E91F79BE71B9B T2 - The Arcade Game (UE) GG USA;Europe 95C43A0846089717FCA37C4D26373973 T2 - The Arcade Game (J) (En) GG Japan A8BDB1BEED088FF83C725C5AF6B85E1F Tails Adventures (W) (En,Ja) GG World FFB364BBAF72881CF7571E7EC388490D Tails no Skypatrol (J) GG Japan A85490306F09C850DDEF0129DEAAF9F7 Taisen Mahjong HaoPai 2 (J) GG Japan 75427FD442D09B606BF2970C2BBEC8B2 Taisen Mahjong HaoPai (J) GG Japan -4E17F98922ED08B1E9654AF31ABED5F3 Taisen-gata Daisenryaku G (J) GG Japan -C72556C76D431B545DD56BDCC536A89F Taito Chase H.Q. (U) GG USA +4E17F98922ED08B1E9654AF31ABED5F3 Taisen-gata Daisenryaku G (J) GG SRAM=8192;GGLink Japan 0C03DF9B73F191C27755C3816343827F TaleSpin (UE) GG Disney USA;Europe AC7AEBC91FC607150AD8DBF286A61E36 Tama & Friends 3 Choume Kouen - Tamalympic (J) GG Japan 0AC77A4B8EF41442D5BFA2148BE8EFCD Tarot no Yakata (J) GG Japan @@ -437,7 +437,7 @@ C0246EED0C11EBE7A9B144A00ED61DF1 Tom and Jerry - The Movie (UE) GG USA;Europe AB48136EFF306E35EC68EBEA10B5559B Tom and Jerry - The Movie (J) GG Japan 3AC2D39D5BA4FC04EEC9D13F0B1C2B73 Torarete Tamaruka (J) GG Japan 758BFE2BABA5D8B518C6F746864BB8D5 True Lies (W) GG World -23ED27EBB1ED0F22610E132A3668F06B Ultimate Soccer (JE) (En,Fr,De,Es,It) GG Europe;Japan +23ED27EBB1ED0F22610E132A3668F06B Ultimate Soccer (JE) (En,Fr,De,Es,It) GG Sports;Soccer GGLink Europe;Japan E6BC90F958617E9BDE26367B5348518C Urban Strike (UE) GG USA;Europe 1E068538747F6D4D99888221A50B7E06 Vampire - Master of Darkness (U) GG USA DB315B11C28F8BE4ECDAC77759E889DE Virtua Fighter Animation (UE) GG GGLink USA;Europe @@ -459,9 +459,9 @@ A23E89266DDAD3C856E7401D04A49C6C Woody Pop (W) (Rev 1) GG World 13F72ACFEA47587F9AA9F655BF98653C World Class Leader Board (UE) GG USA;Europe D95D381C6AFFB8345EE5457655E393D1 World Cup USA 94 (UE) (En,Fr,De,Es,It,Nl,Pt,Sv) GG USA;Europe D8939B64458FAF174CDC1241F777CB59 World Derby (J) GG Japan -E7EABBFC7A1F1339C4720249AEA92A32 World Series Baseball '95 (U) GG USA -59359FC38865CFF00C90D6EB148DDC2F World Series Baseball (U) GG USA -05CAC33029F0CAAC27774504C1AA8597 World Series Baseball (U) (Rev 1) GG USA +E7EABBFC7A1F1339C4720249AEA92A32 World Series Baseball '95 (U) GG Sports;Baseball SRAM=128;GGLink USA +59359FC38865CFF00C90D6EB148DDC2F World Series Baseball (U) GG Sports;Baseball SRAM=128;GGLink USA +05CAC33029F0CAAC27774504C1AA8597 World Series Baseball (U) (Rev 1) GG Sports;Baseball SRAM=128;GGLink USA D810E851AD60ED5BA50B6246C2CE12F2 WWF Raw (UE) GG USA;Europe 571AC03B80E3075C699CD583BF8651FD X-Men - Gamemaster's Legacy (UE) GG Marvel USA;Europe CA15F2BA2507EBD836C42D9D10231EB1 X-Men - Mojo World (UE) GG Marvel USA;Europe