1
0
mirror of https://github.com/simh/simh.git synced 2026-01-29 13:11:26 +00:00

BESM6, NOVA, ECLIPSE, SIGMA: Set DEVICE type to DEV_MUX in MUX devices

Removed deprecated DEV_NET
This commit is contained in:
Mark Pizzolato
2020-03-31 08:59:50 -07:00
parent 18532be134
commit cfbd76e011
3 changed files with 3 additions and 3 deletions

View File

@@ -491,7 +491,7 @@ DEVICE tty_dev = {
"TTY", tty_unit, tty_reg, tty_mod,
27, 2, 1, 1, 2, 1,
NULL, NULL, &tty_reset, NULL, &tty_attach, &tty_detach,
NULL, DEV_NET|DEV_DEBUG
NULL, DEV_MUX|DEV_DEBUG
};
void tty_send (uint32 mask)