Added idle support when sitting at the >>> prompt in the console ROM
This commit is contained in:
parent
31bf337ded
commit
d32b3a0f6d
1 changed files with 6 additions and 1 deletions
|
@ -2166,8 +2166,13 @@ for ( ;; ) {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BEQL:
|
case BEQL:
|
||||||
if (cc & CC_Z) /* br if Z = 1 */
|
if (cc & CC_Z) { /* br if Z = 1 */
|
||||||
BRANCHB (brdisp);
|
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;
|
break;
|
||||||
|
|
||||||
case BVC:
|
case BVC:
|
||||||
|
|
Loading…
Add table
Reference in a new issue