1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-13 15:27:04 +00:00

Fix to allow EDDT to work.

This commit is contained in:
Richard Cornwell 2023-09-26 13:09:34 -04:00
parent 11fed7bd62
commit 0e2a7ac940

View File

@ -1793,7 +1793,7 @@ t_stat dtei_svc (UNIT *uptr)
}
/* If Monitor input, place in buffer */
if ((optr->STATUS & (DTE_SEC|DTE_MON)) == (DTE_SEC|DTE_MON) &&
if ((optr->STATUS & (DTE_SEC|DTE_MON)) != 0 &&
not_empty(&cty_in) && M[SEC_DTMTI + base] == 0) {
ch = cty_in.buff[cty_in.out_ptr];
inco(&cty_in);