From f590ed9e19dae453e9ce49fd5c9ebb86e3bc9d24 Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 27 Feb 2016 20:05:58 +0300 Subject: [PATCH] tracer: gpgx and qn header formats, include cpu name. --- .../Consoles/Nintendo/QuickNES/QuickNES.ITraceable.cs | 2 +- BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.ITraceable.cs index 4065dacfc4..6267bedc00 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.ITraceable.cs @@ -40,7 +40,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES }); } - private const string TraceHeader = "PC: OP SP_A_P_X_Y "; + private const string TraceHeader = "6502: PC, opcode, registers (SP, A, P, X, Y)"; private void ConnectTracer() { diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs index 7b1f2d903b..b262da4b15 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs @@ -16,7 +16,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx public GPGXTraceBuffer(IDebuggable debuggableCore, IMemoryDomains memoryDomains, IDisassemblable disassembler) : base(debuggableCore, memoryDomains, disassembler) { - Header = "M68K Instructions"; + Header = "M68K: PC, machine code, mnemonic, arguments, registers (D0-D7, A0-A7, SR, USP, status flags)"; } public override void TraceFromCallback()