Whoops: The NMI line needs to be powered on by individual processors now it's no longer part of the Processor base class.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2018-08-25 22:50:18 +01:00
parent ab78ba5db0
commit 3a4235f651
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ void EightBit::MOS6502::powerOn() {
P() = RF;
S() = Mask8;
raise(NMI());
raise(SO());
}

View File

@ -28,6 +28,7 @@ void EightBit::Z80::powerOn() {
IntelProcessor::powerOn();
raise(NMI());
raise(M1());
di();