From bcf6e288b2dfba20892df2e997a8f5e3b887bd17 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 29 Mar 2016 17:22:55 -0700 Subject: [PATCH] PDP11, DH11, DHU11: Fix startup initialization delay in DHU mode Excessive delay would be reported on Ultrix as: "Warning: DHU device failed to exit self-test" As discussed in #296 --- PDP11/pdp11_vh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDP11/pdp11_vh.c b/PDP11/pdp11_vh.c index d7d3a0bd..f6c2810e 100644 --- a/PDP11/pdp11_vh.c +++ b/PDP11/pdp11_vh.c @@ -927,7 +927,7 @@ static t_stat vh_wr ( int32 ldata, data &= ~CSR_MASTER_RESET; if (vh == 0) /* Only start unit service on the first unit. Units are polled there */ sim_clock_coschedule (&vh_unit[0], tmxr_poll); - sim_activate_after (&vh_unit[vh_dev.numunits-1], 1200000); /* 1.2 seconds */ + sim_activate_after (&vh_unit[vh_dev.numunits-1], 120000); /* 120 milliseconds */ } if ((data & CSR_RXIE) == 0) vh_clr_rxint (vh);