From 9825ac6db623aa927662662ef2a639eb0e70c069 Mon Sep 17 00:00:00 2001 From: Asnivor Date: Tue, 8 Oct 2024 13:52:35 +0100 Subject: [PATCH] [CPCHawk] Implement FloohZ80 TraceLogger --- .../AmstradCPC/AmstradCPC.IEmulator.cs | 3 +- .../Computers/AmstradCPC/AmstradCPC.cs | 6 +- .../Computers/AmstradCPC/Hardware/LibFz80.cs | 66 ++++++++++++++++++- 3 files changed, 69 insertions(+), 6 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.IEmulator.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.IEmulator.cs index 7746fe7a57..d4b93e58b5 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.IEmulator.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.IEmulator.cs @@ -26,7 +26,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC } _isLag = true; - /* + if (_tracer.IsEnabled()) { _cpu.TraceCallback = s => _tracer.Put(s); @@ -35,7 +35,6 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC { _cpu.TraceCallback = null; } - */ _machine.ExecuteFrame(ren, renSound); diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs index 0208cdcdbe..af2f3756b0 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs @@ -24,7 +24,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC _gameInfo = lp.Roms.Select(r => r.Game).ToList(); //_cpu = new Z80A(default); _cpu = new LibFz80Wrapper(); - //_tracer = new TraceBuffer(_cpu.TraceHeader); + _tracer = new TraceBuffer(_cpu.TraceHeader); _files = lp.Roms.Select(r => r.RomData).ToList(); var settings = lp.Settings ?? new AmstradCPCSettings(); @@ -62,7 +62,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC //_cpu.OnExecFetch = _machine.OnExecFetch; - //ser.Register(_tracer); + ser.Register(_tracer); //ser.Register(_cpu); ser.Register(_machine.CRTScreen); ser.Register(new StateSerializer(SyncState)); @@ -97,7 +97,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC //private readonly Z80A _cpu; private readonly LibFz80Wrapper _cpu; - // private readonly TraceBuffer _tracer; + private readonly TraceBuffer _tracer; public IController _controller; public CPCBase _machine; diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs index 991693220b..726755741a 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs @@ -22,6 +22,15 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC public const int Z80_PIN_NMI = 32; // non-maskable interrupt public const int Z80_PIN_WAIT = 33; // wait requested + public const int Z80_FLAG_C = 0; // carry + public const int Z80_FLAG_N = 1; // add/subtract + public const int Z80_FLAG_P = 2; // parity/overflow + public const int Z80_FLAG_3 = 3; // undocumented bit 3 + public const int Z80_FLAG_H = 4; // half carry + public const int Z80_FLAG_5 = 5; // undocumented bit 5 + public const int Z80_FLAG_Z = 6; // zero + public const int Z80_FLAG_S = 7; // sign + /// /// Z80 pin configuration /// @@ -168,11 +177,24 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC public void ExecuteOne() { - //ushort step = Z80.step; + if (INT == 1 && Z80.iff1 > 0) + { + TraceCallback?.Invoke(new(disassembly: "====IRQ====", registerInfo: string.Empty)); + } + + if (NMI == 1) + { + TraceCallback?.Invoke(new(disassembly: "====NMI====", registerInfo: string.Empty)); + } if (MREQ == 1 && RD == 1) { DB = ReadMemory(ADDR); + + if (M1 == 1) + { + TraceCallback?.Invoke(State()); + } } if (MREQ == 1 && WR == 1) @@ -333,6 +355,48 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC } } + public Action TraceCallback; + + public string TraceHeader => "Z80A: PC, machine code, mnemonic, operands, registers (AF, BC, DE, HL, IX, IY, SP, Cy), flags (CNP3H5ZS)"; + + public TraceInfo State(bool disassemble = true) + { + int bytes_read = 0; + + string disasm = disassemble ? BizHawk.Emulation.Cores.Components.Z80A.Z80ADisassembler.Disassemble(Z80.pc, ReadMemory, out bytes_read) : "---"; + string byte_code = null; + + for (ushort i = 0; i < bytes_read; i++) + { + byte_code += $"{ReadMemory((ushort)(Z80.pc + i)):X2}"; + if (i < (bytes_read - 1)) + { + byte_code += " "; + } + } + + return new( + disassembly: $"{Z80.pc:X4}: {byte_code.PadRight(12)} {disasm.PadRight(26)}", + registerInfo: string.Join(" ", + $"AF:{Z80.af:X4}", + $"BC:{Z80.bc:X4}", + $"DE:{Z80.de:X4}", + $"HL:{Z80.hl:X4}", + $"IX:{Z80.ix:X4}", + $"IY:{Z80.iy:X4}", + $"SP:{Z80.sp:X4}", + $"Cy:{TotalExecutedCycles}", + string.Concat( + Z80.af.Bit(Z80_FLAG_C) ? "C" : "c", + Z80.af.Bit(Z80_FLAG_N) ? "N" : "n", + Z80.af.Bit(Z80_FLAG_P) ? "P" : "p", + Z80.af.Bit(Z80_FLAG_3) ? "3" : "-", + Z80.af.Bit(Z80_FLAG_H) ? "H" : "h", + Z80.af.Bit(Z80_FLAG_5) ? "5" : "-", + Z80.af.Bit(Z80_FLAG_Z) ? "Z" : "z", + Z80.af.Bit(Z80_FLAG_S) ? "S" : "s"))); + } + public void SyncState(Serializer ser) { ser.BeginSection("FlooohZ80");