Correct PC power on value issue.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-09-07 11:16:03 +01:00
parent f01e3e0430
commit aca81384c3
1 changed files with 1 additions and 1 deletions

View File

@ -100,8 +100,8 @@ namespace EightBit
protected override void OnRaisedPOWER()
{
this.PC.Word = this.SP.Word = this.AF.Word = this.BC.Word = this.DE.Word = this.HL.Word = (ushort)Mask.Mask16;
this.RaiseHALT();
this.SP.Word = this.AF.Word = this.BC.Word = this.DE.Word = this.HL.Word = (ushort)Mask.Mask16;
base.OnRaisedPOWER();
}