Unify Intel style JR CC code and fix SM83 timing issues.

This commit is contained in:
Adrian Conlon
2025-05-03 12:09:34 +01:00
parent 0679b95b77
commit 080f203a55
3 changed files with 2 additions and 23 deletions
-10
View File
@@ -563,16 +563,6 @@ namespace Z80
this.Tick(5);
}
protected override bool JumpRelativeConditional(bool condition)
{
var offset = this.FetchByte();
if (condition)
{
this.JumpRelative(offset);
}
return condition;
}
private int Zero()
{
return ZeroTest(this.F);