VAX8600, VAX750: Pass correct delay to TTI device sim_clock_coschedule
This commit is contained in:
parent
48e0b47d51
commit
372231dd3a
2 changed files with 2 additions and 2 deletions
|
@ -536,7 +536,7 @@ t_stat tti_svc (UNIT *uptr)
|
|||
{
|
||||
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? */
|
||||
((sim_os_msec () - tti_buftime) < 500))
|
||||
|
|
|
@ -615,7 +615,7 @@ int32 line = uptr - tti_dev.units;
|
|||
switch (line) {
|
||||
|
||||
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? */
|
||||
((sim_os_msec () - tti_buftime) < 500))
|
||||
return SCPE_OK;
|
||||
|
|
Loading…
Add table
Reference in a new issue