From a93051cf27cc314ca7cc986d6e858d8c90e3534a Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Thu, 21 Apr 2011 01:57:06 +0000 Subject: [PATCH] TI83 - mostly implement savestates (text) --- BizHawk.Emulation/Consoles/Calculator/TI83.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/BizHawk.Emulation/Consoles/Calculator/TI83.cs b/BizHawk.Emulation/Consoles/Calculator/TI83.cs index 459b1e44a8..98e34628d4 100644 --- a/BizHawk.Emulation/Consoles/Calculator/TI83.cs +++ b/BizHawk.Emulation/Consoles/Calculator/TI83.cs @@ -425,6 +425,11 @@ namespace BizHawk.Emulation.Consoles.Calculator { 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("[/TI83]"); } @@ -438,6 +443,16 @@ namespace BizHawk.Emulation.Consoles.Calculator 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 + Console.WriteLine("Skipping unrecognized identifier " + args[0]); } }