Added Golden Axe Warrior. Added Debugger.

This commit is contained in:
2026-05-08 22:51:30 +01:00
parent 25ac64fa5f
commit 778f03b55c
13 changed files with 2114 additions and 38 deletions

View File

@@ -53,12 +53,12 @@ namespace Core.Cpu
// The Memory Bus
private readonly IMemory _memory;
private readonly IO_Bus _simpleIoBus;
private readonly IIoBus _simpleIoBus;
//External Timing interface
public Func<ushort, long, int>? WaitStateCallback { get; set; }
public Z80(IMemory memory, IO_Bus ioBus)
public Z80(IMemory memory, IIoBus ioBus)
{
_memory = memory;
_simpleIoBus = ioBus;