B5500: Updates for SCP negative sim_interval.

This commit is contained in:
Richard Cornwell 2020-10-27 21:28:47 -04:00
parent 37f2b341d0
commit e22d2c44f8
2 changed files with 3 additions and 2 deletions

View file

@ -2001,6 +2001,7 @@ sim_instr(void)
reason = sim_process_event();
if (reason != SCPE_OK)
break; /* process */
sim_interval--;
}
/* Passed time quantum */
if (sim_interval <= 0) { /* event queue? */

View file

@ -188,7 +188,7 @@ t_stat dsk_cmd(uint16 cmd, uint16 dev, uint8 chan, uint16 *wc)
} else {
uptr->CMD |= DK_ADDR;
}
sim_activate(uptr, 100);
sim_activate(uptr, 90);
return SCPE_OK;
}
@ -292,7 +292,7 @@ t_stat dsk_srv(UNIT * uptr)
sim_activate(eptr, 8000);
return SCPE_OK;
}
sim_activate(uptr, 100);
sim_activate(uptr, 90);
}
return SCPE_OK;
}