From 86e2e6bd42ec83f8ee27eddda2b2489d163d99fc Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 12 Oct 2013 10:07:25 -0700 Subject: [PATCH] PDP8: Avoid delaying the initial check for connecctions to mux port after attach. Fix for #85 --- PDP8/pdp8_ttx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDP8/pdp8_ttx.c b/PDP8/pdp8_ttx.c index f65f23be..0a7d7418 100644 --- a/PDP8/pdp8_ttx.c +++ b/PDP8/pdp8_ttx.c @@ -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; }