mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-14 18:37:11 +00:00
Merge pull request #887 from TomHarte/ZX80Wait
Ensures no signalling to wait by a ZX80, ever.
This commit is contained in:
commit
d987e5a9d7
@ -165,7 +165,7 @@ template<bool is_zx81> class ConcreteMachine:
|
||||
}
|
||||
if(!(address & 2)) nmi_is_enabled_ = false;
|
||||
if(!(address & 1)) nmi_is_enabled_ = is_zx81;
|
||||
if(!nmi_is_enabled_) z80_.set_wait_line(false);
|
||||
if(is_zx81 && !nmi_is_enabled_) z80_.set_wait_line(false);
|
||||
|
||||
// The below emulates the ZonX AY expansion device.
|
||||
if constexpr (is_zx81) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user