From 7abac10164c30ef232d382a1bb21641d09c41f8e Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 22 Feb 2016 15:02:38 +0300 Subject: [PATCH] genesis disasm/tracer: replace IR reg with raw bytes, drop separate PC reg. --- BizHawk.Client.EmuHawk/tools/TraceLogger.cs | 2 +- .../Consoles/Sega/gpgx/GPGX.IDisassembler.cs | 2 +- BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TraceLogger.cs b/BizHawk.Client.EmuHawk/tools/TraceLogger.cs index 6fe3fd1daf..c20485eaf4 100644 --- a/BizHawk.Client.EmuHawk/tools/TraceLogger.cs +++ b/BizHawk.Client.EmuHawk/tools/TraceLogger.cs @@ -212,7 +212,7 @@ namespace BizHawk.Client.EmuHawk sfd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.PathEntries.LogPathFragment, null); } - sfd.Filter = "Text Files (*.txt)|*.txt|Log Files (*.log)|*.log|All Files|*.*"; + sfd.Filter = "Log Files (*.log)|*.log|Text Files (*.txt)|*.txt|All Files|*.*"; sfd.RestoreDirectory = true; var result = sfd.ShowHawkDialog(); if (result == DialogResult.OK) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDisassembler.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDisassembler.cs index 4fa60239aa..27aedb2eef 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDisassembler.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IDisassembler.cs @@ -36,7 +36,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx length = info.Length; - return string.Format("{0,-8} {1}", info.Mnemonic, info.Args); + return string.Format("{0:X4} {1,-7} {2}", info.RawBytes.Substring(0, 4), info.Mnemonic, info.Args); } // TODO: refactor MC6800's disassembler to be a static call diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs index 81a6e8e894..b01061faab 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs @@ -66,7 +66,9 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx { if (r.Key.StartsWith("M68K")) // drop Z80 regs until it has its own debugger/tracer { - if (r.Key != "M68K SP" && r.Key != "M68K ISP") // copies of a7 + if (r.Key != "M68K SP" && r.Key != "M68K ISP" && // copies of a7 + r.Key != "M68K PC" && // already present in every line start + r.Key != "M68K IR") // copy of last opcode, already shown in raw bytes { sb.Append( string.Format("{0}:{1} ",