1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-01 22:16:21 +00:00

Unibus and Qbus VAXen: Add DUP-11/DPV-11 device

These devices start disabled and will be that way in essentially all
working systems, but there apparently was a DECnet Phase V
support for this device, so it is added to all systems. The DPV
should now be readily testable.

As mentioned in #1152.  That PR will fix the DUP device.

This commit is explicitly released from any license restriction
mentioned in the LICENSE.txt of the github.com/simh/simh
master branch changes.
This commit is contained in:
Mark Pizzolato
2022-06-05 13:06:04 -07:00
parent 775e2f1f79
commit 910bbc2d7e
18 changed files with 88 additions and 19 deletions

View File

@@ -63,6 +63,7 @@ extern DEVICE dz_dev;
extern DEVICE vh_dev;
extern DEVICE xu_dev, xub_dev;
extern DEVICE dmc_dev;
extern DEVICE dup_dev;
extern DEVICE ch_dev;
DEVICE *sim_devices[] = {
@@ -100,6 +101,7 @@ DEVICE *sim_devices[] = {
&xu_dev,
&xub_dev,
&dmc_dev,
&dup_dev,
&ch_dev,
NULL
};