1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-02-19 13:56:15 +00:00

KA10: Systems Concepts DC-10 disk controller.

This commit is contained in:
Lars Brinkhoff
2019-07-04 07:55:02 +02:00
parent 57df5a0ecc
commit 921ebfdc05
3 changed files with 1040 additions and 0 deletions

1035
PDP10/ka10_ai.c Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -376,6 +376,7 @@ extern DEVICE dkb_dev;
extern DEVICE auxcpu_dev;
extern DEVICE dpk_dev;
extern DEVICE wcnsls_dev; /* MIT Spacewar Consoles */
extern DEVICE ai_dev;
extern DEVICE dct_dev; /* PDP6 devices. */
extern DEVICE dtc_dev;
extern DEVICE mtc_dev;
@@ -479,6 +480,7 @@ int auxcpu_write (int addr, t_uint64);
#define NUM_DEVS_IMP 1
#define NUM_DEVS_CH10 ITS
#define NUM_DEVS_DPK ITS
#define NUM_DEVS_AI ITS
#endif
/* Global data */

View File

@@ -187,6 +187,9 @@ DEVICE *sim_devices[] = {
#endif
#if NUM_DEVS_DPK > 0
&dpk_dev,
#endif
#if NUM_DEVS_AI > 0
&ai_dev,
#endif
NULL
};