mirror of
https://github.com/simh/simh.git
synced 2026-05-04 15:05:39 +00:00
VAX8600, VAX750: Pass correct delay to TTI device sim_clock_coschedule
This commit is contained in:
@@ -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))
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user