From 68328d92fb8406f692c84a8ff5df7ee297ec2a88 Mon Sep 17 00:00:00 2001 From: Adrian Conlon <98398945+AdrianConlon@users.noreply.github.com> Date: Sat, 3 May 2025 14:40:38 +0100 Subject: [PATCH] Fix displaced timing on arithmetic operations for z80. 34 failures now --- Z80/Z80.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Z80/Z80.cs b/Z80/Z80.cs index eee1b09..8d10528 100644 --- a/Z80/Z80.cs +++ b/Z80/Z80.cs @@ -1432,7 +1432,7 @@ namespace Z80 if (memoryZ && this._displaced) { this.FetchDisplacement(); - this.Tick(4); + this.Tick(5); } var value = this.R(z);