Note commonality between Intel-style processors

This commit is contained in:
Adrian Conlon
2025-08-10 12:43:34 +01:00
parent 2e1573b016
commit 558da38f12
4 changed files with 13 additions and 13 deletions

View File

@@ -138,6 +138,13 @@ namespace EightBit
this.Jump(0);
}
protected override void HandleINT()
{
base.HandleINT();
this.DisableInterrupts();
this.RaiseHALT();
}
protected sealed override void Push(byte value)
{
this.MemoryWrite(this.SP.Decrement(), value);