Whoops: missed bus read/write clock ticks in the 6502 emulator.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-18 00:52:45 +00:00
parent ea82c58777
commit a144cf19a1
3 changed files with 15 additions and 3 deletions

View File

@@ -68,6 +68,8 @@ namespace EightBit
public ref PinLevel HALT() => ref this.haltLine;
public IntelOpCodeDecoded GetDecodedOpCode(byte opCode) => this.decodedOpCodes[opCode];
public override void RaisePOWER()
{
base.RaisePOWER();
@@ -212,7 +214,5 @@ namespace EightBit
++this.PC();
this.RaiseHALT();
}
protected IntelOpCodeDecoded GetDecodedOpCode(byte opCode) => this.decodedOpCodes[opCode];
}
}