Skip to content

Commit

Permalink
BESM6, NOVA, ECLIPSE, SIGMA: Set DEVICE type to DEV_MUX in MUX devices
Browse files Browse the repository at this point in the history
Removed deprecated DEV_NET
  • Loading branch information
markpizz committed Mar 31, 2020
1 parent 18532be commit cfbd76e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BESM6/besm6_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion NOVA/nova_qty.c
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ DEVICE alm_dev =
1, 10, 31, 1, 8, 8,
NULL, NULL, &alm_reset,
NULL, &qty_attach, &qty_detach,
&alm_dib, (DEV_DISABLE | DEV_NET)
&alm_dib, (DEV_DISABLE | DEV_MUX)
} ;

int alm_section = -1 ; /* current line "section" (0 = RCV, 1 = XMT) */
Expand Down
2 changes: 1 addition & 1 deletion sigma/sigma_coc.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ DEVICE mux_dev = {
2, 10, 31, 1, 16, 8,
&tmxr_ex, &tmxr_dep, &mux_reset,
NULL, &mux_attach, &mux_detach,
&mux_dib, DEV_NET | DEV_DISABLE
&mux_dib, DEV_MUX | DEV_DISABLE
};

/* MUXL data structures
Expand Down

0 comments on commit cfbd76e

Please sign in to comment.