1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-05-04 15:07:17 +00:00

KA10: Removed USER mode restriction from idle detection.

This commit is contained in:
Richard Cornwell
2024-01-08 12:24:27 -05:00
parent 958899269b
commit 0c627e98c1

View File

@@ -4852,7 +4852,7 @@ st_pi:
/* Check if possible idle loop */
if (sim_idle_enab &&
(((FLAGS & USER) != 0 && PC < 020 && AB < 020 && (IR & 0740) == 0340) ||
((PC < 020 && AB < 020 && (IR & 0740) == 0340) ||
(uuo_cycle && (IR & 0740) == 0 && IA == 041))) {
sim_idle (TMR_RTC, FALSE);
}