With my correct implementation of HALT, I need the fetch to take place during a halted state

This commit is contained in:
Adrian Conlon
2025-05-04 08:56:22 +01:00
parent e4494e943a
commit 47374e591d

View File

@@ -226,7 +226,8 @@ namespace LR35902
}
else if (this.HALT.Lowered())
{
//this.Execute(0); // NOP
_ = this.FetchByte();
this.Execute(0); // NOP
}
else
{