From 89c7a183e186848e2a9399e84733aafb0401edc3 Mon Sep 17 00:00:00 2001 From: Neil Webber Date: Mon, 16 Oct 2023 12:44:07 -0500 Subject: [PATCH] DC11 implementation --- boot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boot.py b/boot.py index 9edd5b2..ab6c18a 100644 --- a/boot.py +++ b/boot.py @@ -2,6 +2,7 @@ import time from machine import PDP1170 from kw11 import KW11 from kl11 import KL11 +from dc11 import DC11 from rp import RPRM @@ -120,6 +121,7 @@ def make_unix_machine(*, loglevel='INFO', drivenames=[]): p.associate_device(KW11(p.ub), 'KW') # line clock p.associate_device(KL11(p.ub), 'KL') # console p.associate_device(RPRM(p.ub, *drivenames), 'RP') # disk drive + p.associate_device(DC11(p.ub), 'DC') # additional serial poirts return p