Fix loads of z80 timing issues. 84 timing issues remain.

This commit is contained in:
Adrian Conlon
2025-05-03 11:45:55 +01:00
parent 898a2bc7ea
commit 94b8da456b

View File

@@ -877,9 +877,9 @@ namespace Z80
if (update)
{
this.Tick();
if (this._displaced)
{
this.Tick();
this.MemoryWrite(operand);
if (!memoryZ)
{
@@ -888,6 +888,8 @@ namespace Z80
}
else
{
if (memoryZ)
this.Tick();
this.R(z, operand);
}
}