From 61c50e1d7c1b23086e111d1f8fadf0dbf1b3ffe0 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 21 Feb 2016 13:36:55 -0500 Subject: [PATCH] GPGX - clean up trace log entries --- .../Consoles/Sega/gpgx/GPGX.IDebuggable.cs | 12 ++++++++++-- .../Consoles/Sega/gpgx/GPGX.ITraceable.cs | 6 +++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDebuggable.cs index 3d0f4a87b7..9f8ddf7341 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDebuggable.cs @@ -23,8 +23,16 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx byte size = 32; if (name.Contains("68K SR") || name.StartsWith("Z80")) size = 16; - ret[Marshal.PtrToStringAnsi(regs[i].Name)] = - new RegisterValue { BitSize = size, Value = (ulong)regs[i].Value }; + + // TODO: clean me up + if (size == 16) + { + ret[Marshal.PtrToStringAnsi(regs[i].Name)] = (ushort)regs[i].Value; + } + else + { + ret[Marshal.PtrToStringAnsi(regs[i].Name)] = (uint)regs[i].Value; + } } return ret; diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs index 03440fb26f..e3538db7c0 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs @@ -2,6 +2,7 @@ using System; using System.Text; using BizHawk.Emulation.Common.IEmulatorExtensions; +using BizHawk.Common.NumberExtensions; namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx { @@ -59,7 +60,10 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx { if (r.Key.StartsWith("M68K")) { - Buffer.Append(string.Format("{0}:{1:X8}", r.Key, r.Value.Value).Remove(0,4)); + Buffer.Append( + string.Format("{0}:{1} ", + r.Key.Replace("M68K", string.Empty).Trim(), + r.Value.Value.ToHexString(r.Value.BitSize / 4))); } }