Skip to content

Commit 0c627e9

Browse files
committed
KA10: Removed USER mode restriction from idle detection.
1 parent 9588992 commit 0c627e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PDP10/kx10_cpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4852,7 +4852,7 @@ if ((reason = build_dev_tab ()) != SCPE_OK) /* build, chk dib_tab */
48524852

48534853
/* Check if possible idle loop */
48544854
if (sim_idle_enab &&
4855-
(((FLAGS & USER) != 0 && PC < 020 && AB < 020 && (IR & 0740) == 0340) ||
4855+
((PC < 020 && AB < 020 && (IR & 0740) == 0340) ||
48564856
(uuo_cycle && (IR & 0740) == 0 && IA == 041))) {
48574857
sim_idle (TMR_RTC, FALSE);
48584858
}

0 commit comments

Comments
 (0)