GPGX - clean up trace log entries

This commit is contained in:
adelikat 2016-02-21 13:36:55 -05:00
parent 66dea10b0b
commit 61c50e1d7c
2 changed files with 15 additions and 3 deletions

View File

@ -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;

View File

@ -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)));
}
}