Try to minimise use of "Word" from Register16

This commit is contained in:
Adrian Conlon
2024-06-30 12:30:07 +01:00
parent 325bee8539
commit d8fad7b988
8 changed files with 157 additions and 68 deletions
+2 -2
View File
@@ -499,7 +499,7 @@ namespace EightBit
switch (y)
{
case 0: // JP nn
this.Jump(this.FetchWord().Word);
this.JumpIndirect();
this.Tick(10);
break;
case 2: // OUT (n),A
@@ -548,7 +548,7 @@ namespace EightBit
switch (p)
{
case 0: // CALL nn
this.Call(this.FetchWord().Word);
this.CallIndirect();
this.Tick(17);
break;
}