From f48d1f418d33b30903650ca02b5ca05709bbd5c6 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 28 Aug 2016 13:55:53 -0700 Subject: [PATCH] PDP11: Add ability to explicitly set the interrupt vector for the TS device --- PDP11/pdp11_ts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PDP11/pdp11_ts.c b/PDP11/pdp11_ts.c index 1727960d..34f59e2a 100644 --- a/PDP11/pdp11_ts.c +++ b/PDP11/pdp11_ts.c @@ -360,8 +360,8 @@ MTAB ts_mod[] = { &sim_tape_set_capac, &sim_tape_show_capac, NULL, "Set/Display capacity" }, { MTAB_XTD|MTAB_VDV|MTAB_VALR, 004, "ADDRESS", "ADDRESS", &set_addr, &show_addr, NULL, "Bus address" }, - { MTAB_XTD|MTAB_VDV, 0, "VECTOR", NULL, - NULL, &show_vec, NULL, "Interrupt vector" }, + { MTAB_XTD|MTAB_VDV|MTAB_VALR, 0, "VECTOR", "VECTOR", + &set_vec, &show_vec, NULL, "Interrupt vector" }, { 0 } };