Added idle support when sitting at the >>> prompt in the console ROM

This commit is contained in:
Mark Pizzolato 2011-06-02 08:37:17 -07:00
parent 31bf337ded
commit d32b3a0f6d

View file

@ -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: