1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-25 16:31:42 +00:00

Fix refresh slots: they're taken, not open.

This commit is contained in:
Thomas Harte 2022-08-16 21:51:02 -04:00
parent e84e94ef61
commit 7289192130

View File

@ -590,7 +590,7 @@ template <int cycle, bool stop_if_cpu> bool Chipset::perform_cycle() {
// Blitter and CPU priority is dealt with below. // Blitter and CPU priority is dealt with below.
if constexpr (cycle >= 0x00 && cycle < 0x08) { if constexpr (cycle >= 0x00 && cycle < 0x08) {
// Memory refresh, four slots per line. // Memory refresh, four slots per line.
return true; return false;
} }
if constexpr (cycle >= 0x08 && cycle < 0x0e) { if constexpr (cycle >= 0x08 && cycle < 0x0e) {