mirror of
https://github.com/simh/simh.git
synced 2026-02-12 02:48:38 +00:00
Set device flags indicating DEV_DISK, DEV_TAPE, DEV_MUX and DEV_ETHER for all simulator devices which use the sim_disk, sim_tape, sim_tmxr, and sim_ether libraries
This commit is contained in:
@@ -226,7 +226,7 @@ DEVICE ct_dev = {
|
||||
CT_NUMDR, 10, 31, 1, 8, 8,
|
||||
NULL, NULL, &ct_reset,
|
||||
&ct_boot, &ct_attach, &ct_detach,
|
||||
&ct_dib, DEV_DISABLE | DEV_DIS | DEV_DEBUG
|
||||
&ct_dib, DEV_DISABLE | DEV_DIS | DEV_DEBUG | DEV_TAPE
|
||||
};
|
||||
|
||||
/* IOT routines */
|
||||
|
||||
@@ -217,7 +217,7 @@ DEVICE mt_dev = {
|
||||
MT_NUMDR, 10, 31, 1, 8, 8,
|
||||
NULL, NULL, &mt_reset,
|
||||
NULL, &mt_attach, &mt_detach,
|
||||
&mt_dib, DEV_DISABLE
|
||||
&mt_dib, DEV_DISABLE | DEV_TAPE
|
||||
};
|
||||
|
||||
/* IOT routines */
|
||||
|
||||
@@ -123,7 +123,7 @@ DEVICE ttix_dev = {
|
||||
1, 10, 31, 1, 8, 8,
|
||||
&tmxr_ex, &tmxr_dep, &ttix_reset,
|
||||
NULL, &ttx_attach, &ttx_detach,
|
||||
&ttix_dib, DEV_NET | DEV_DISABLE
|
||||
&ttix_dib, DEV_MUX | DEV_DISABLE
|
||||
};
|
||||
|
||||
/* TTOx data structures
|
||||
|
||||
Reference in New Issue
Block a user