Make the Z80 implementation M-Cycle accurate. I think!

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-11-30 14:06:38 +00:00
parent c7c9963db3
commit c15ec96862
3 changed files with 138 additions and 204 deletions
+1 -1
View File
@@ -214,7 +214,7 @@ namespace EightBit
protected void Jump(ushort destination) => this.PC.Word = destination;
protected void Call(ushort destination)
protected virtual void Call(ushort destination)
{
this.PushWord(this.PC);
this.Jump(destination);