1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-14 15:46:31 +00:00

PDP8: Avoid delaying the initial check for connecctions to mux port after attach. Fix for #85

This commit is contained in:
Mark Pizzolato 2013-10-12 10:07:25 -07:00
parent abfae3ca88
commit 86e2e6bd42

View File

@ -360,7 +360,7 @@ t_stat r;
r = tmxr_attach (&ttx_desc, uptr, cptr); /* attach */
if (r != SCPE_OK) /* error */
return r;
sim_activate (uptr, tmxr_poll); /* start poll */
sim_activate (uptr, 0); /* start poll */
return SCPE_OK;
}