mirror of
https://github.com/simh/simh.git
synced 2026-02-27 01:00:07 +00:00
Added idle support when sitting at the >>> prompt in the console ROM
This commit is contained in:
@@ -2166,8 +2166,13 @@ for ( ;; ) {
|
||||
break;
|
||||
|
||||
case BEQL:
|
||||
if (cc & CC_Z) /* br if Z = 1 */
|
||||
if (cc & CC_Z) { /* br if Z = 1 */
|
||||
BRANCHB (brdisp);
|
||||
if (((PSL & PSL_IS) != 0) && /* on IS? */
|
||||
(PSL_GETIPL (PSL) == 0x1F) && /* at IPL 31 */
|
||||
(fault_PC == 0x2004361B)) /* Boot ROM Character Prompt */
|
||||
cpu_idle();
|
||||
}
|
||||
break;
|
||||
|
||||
case BVC:
|
||||
|
||||
Reference in New Issue
Block a user