From d928bef56295619dc76eb2a8a634780a3453e946 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Sat, 15 Oct 2016 17:54:45 -0700 Subject: [PATCH] Register PC11 I/O handlers --- modules/pdp11/lib/pc11.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/pdp11/lib/pc11.js b/modules/pdp11/lib/pc11.js index e1e6f74c8..b8f886396 100644 --- a/modules/pdp11/lib/pc11.js +++ b/modules/pdp11/lib/pc11.js @@ -90,6 +90,9 @@ PC11.prototype.initBus = function(cmp, bus, cpu, dbg) this.bus = bus; this.cpu = cpu; this.dbg = dbg; + + bus.addIOTable(this, PC11.UNIBUS_IOTABLE); + this.setReady(); };