From 90327012a99c496410b1915b3b42a57a3708214e Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 20 Jun 2018 21:32:08 -0700 Subject: [PATCH] PDP11, VAX: Fix broken build due to typo for routine name --- 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 bf54e455..17b12485 100644 --- a/PDP11/pdp11_dz.c +++ b/PDP11/pdp11_dz.c @@ -590,7 +590,7 @@ t_stat dz_xmt_svc (UNIT *uptr) { tmxr_poll_tx (&dz_desc); /* poll output */ dz_update_xmti (); /* update int */ -sim_clock_coschedule_after (uptr, 500000); /* reactivate occasionally */ +sim_activate_after (uptr, 500000); /* reactivate occasionally */ return SCPE_OK; }