mirror of
https://github.com/simh/simh.git
synced 2026-01-14 15:45:18 +00:00
VAX8600, VAX750: Pass correct delay to TTI device sim_clock_coschedule
This commit is contained in:
parent
48e0b47d51
commit
372231dd3a
@ -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…
x
Reference in New Issue
Block a user