1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Reports ::Ready upon a WAI.

This commit is contained in:
Thomas Harte 2020-10-15 21:37:37 -04:00
parent 98c81749c8
commit 334e0666b7

View File

@ -185,7 +185,7 @@ template <typename BusHandler, bool uses_ready_line> void Processor<BusHandler,
continue; continue;
} else { } else {
--next_op_; --next_op_;
perform_bus(0xffffff, nullptr, MOS6502Esque::None); perform_bus(0xffffff, nullptr, (required_exceptions_ & IRQ) ? MOS6502Esque::Ready : MOS6502Esque::None);
} }
break; break;