1
0
mirror of https://github.com/simh/simh.git synced 2026-05-03 22:48:35 +00:00

KA10: Added default disable for devices that could be on KL10.

This commit is contained in:
Richard Cornwell
2022-06-21 09:50:05 -04:00
committed by Mark Pizzolato
parent 68a21703b2
commit 942e7d4bb7
5 changed files with 50 additions and 10 deletions

View File

@@ -38,6 +38,14 @@
#define CP_DEVNUM 0110
#if KL
#define CP_DIS DEV_DIS
#endif
#ifndef CP_DIS
#define CP_DIS 0
#endif
/* std devices. data structures
@@ -115,7 +123,7 @@ DEVICE cp_dev = {
"CP", &cp_unit, cp_reg, cp_mod,
NUM_DEVS_CP, 8, 15, 1, 8, 8,
NULL, NULL, NULL, NULL, &cp_attach, &cp_detach,
&cp_dib, DEV_DISABLE | DEV_DEBUG | DEV_CARD, 0, crd_debug,
&cp_dib, DEV_DISABLE | DEV_DEBUG | DEV_CARD | CP_DIS, 0, crd_debug,
NULL, NULL, &cp_help, NULL, NULL, &cp_description
};