VAX8600, VAX750: Pass correct delay to TTI device sim_clock_coschedule

This commit is contained in:
Mark Pizzolato 2016-12-17 11:51:05 -08:00
parent 48e0b47d51
commit 372231dd3a
2 changed files with 2 additions and 2 deletions

View file

@ -536,7 +536,7 @@ t_stat tti_svc (UNIT *uptr)
{ {
int32 c; int32 c;
sim_clock_coschedule (uptr, TMXR_MULT); /* continue poll */ sim_clock_coschedule (uptr, tmxr_poll); /* continue poll */
if ((tti_csr & CSR_DONE) && /* input still pending and < 500ms? */ if ((tti_csr & CSR_DONE) && /* input still pending and < 500ms? */
((sim_os_msec () - tti_buftime) < 500)) ((sim_os_msec () - tti_buftime) < 500))

View file

@ -615,7 +615,7 @@ int32 line = uptr - tti_dev.units;
switch (line) { switch (line) {
case ID_CT: /* console terminal */ case ID_CT: /* console terminal */
sim_clock_coschedule (uptr, TMXR_MULT); /* continue poll */ sim_clock_coschedule (uptr, tmxr_poll); /* continue poll */
if ((tti_csr & CSR_DONE) && /* input still pending and < 500ms? */ if ((tti_csr & CSR_DONE) && /* input still pending and < 500ms? */
((sim_os_msec () - tti_buftime) < 500)) ((sim_os_msec () - tti_buftime) < 500))
return SCPE_OK; return SCPE_OK;