tracer: compromise pending
This commit is contained in:
parent
5fc60810ae
commit
0cba536348
|
@ -53,8 +53,9 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
|||
var length = 0;
|
||||
var disasm = Disassembler.Disassemble(MemoryDomains.SystemBus, pc, out length);
|
||||
|
||||
// feos: we shouldn't append up to 64, but momem.l prints all the regs, while it could do like D0-A6 (as Gens-Tracer does it)
|
||||
Buffer.Append(string.Format("{0:X6}: {1,-24}", pc, disasm));
|
||||
// feos: we shouldn't append up to 64, but movem.l prints all the regs affected
|
||||
// so use 32 and deal with registers shifting every now and then
|
||||
Buffer.Append(string.Format("{0:X6}: {1,-32}", pc, disasm));
|
||||
|
||||
foreach (var r in regs)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue