Bell 32V development
authorTom London <tbl@research.uucp>
Tue, 13 Feb 1979 10:02:44 +0000 (05:02 -0500)
committerTom London <tbl@research.uucp>
Tue, 13 Feb 1979 10:02:44 +0000 (05:02 -0500)
Work on file usr/src/sys/dev/dhfdm.c

Co-Authored-By: John Reiser <jfr@research.uucp>
Synthesized-from: 32v

usr/src/sys/dev/dhfdm.c [new file with mode: 0644]

diff --git a/usr/src/sys/dev/dhfdm.c b/usr/src/sys/dev/dhfdm.c
new file mode 100644 (file)
index 0000000..f7fe33b
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+ *     DM-BB fake driver
+ */
+#include "../h/param.h"
+#include "../h/tty.h"
+#include "../h/conf.h"
+
+struct tty     dh11[];
+
+dmopen(dev)
+{
+       register struct tty *tp;
+
+       tp = &dh11[minor(dev)];
+       tp->t_state |= CARR_ON;
+}
+
+dmctl(dev, bits)
+{
+}