More consistency updates between i8080 and Z80.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2017-12-04 23:41:49 +00:00
parent 1bf797490b
commit 6a47f710b9
3 changed files with 10 additions and 2 deletions
+6
View File
@@ -25,6 +25,12 @@ EightBit::register16_t& EightBit::Intel8080::HL() {
return hl;
}
void EightBit::Intel8080::reset() {
IntelProcessor::reset();
INT() = false;
di();
}
void EightBit::Intel8080::di() {
m_interruptEnable = false;
}