From 814960e25377abee0488c5a05883120fb3ee8340 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 16 Apr 2013 09:11:24 -0700 Subject: [PATCH] Properly restore DZ Modem Control state during a simulator RESTORE. --- PDP11/pdp11_dz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDP11/pdp11_dz.c b/PDP11/pdp11_dz.c index 4fd1e609..b39337d2 100644 --- a/PDP11/pdp11_dz.c +++ b/PDP11/pdp11_dz.c @@ -744,7 +744,7 @@ t_stat dz_attach (UNIT *uptr, char *cptr) int32 dz, muxln; t_stat r; -if (sim_switches & SWMASK ('M')) /* modem control? */ +if ((sim_switches & SWMASK ('M')) || dz_mctl) /* modem control? */ tmxr_set_modem_control_passthru (&dz_desc); r = tmxr_attach (&dz_desc, uptr, cptr); /* attach mux */ if (r != SCPE_OK) { /* error? */