1
0
mirror of https://github.com/simh/simh.git synced 2026-03-03 10:06:27 +00:00

PDP10/11: Include DUPs and KMCs

For the 11, include 2 KMCs, 0 initially enabled

For the 10, include 1 KMC and 4 DUPs.  The KMC is not initially enabled.

The -10 only supports 2 DUPs, but I have a small patch that will allow it to run 4.
This commit is contained in:
Timothe Litt
2013-07-11 12:10:53 -04:00
parent 07432b7272
commit a5ef1ba2e6
2 changed files with 4 additions and 0 deletions

View File

@@ -621,6 +621,8 @@ typedef struct pdp_dib DIB;
#define DZ_MUXES 4 /* max # of muxes */
#define DZ_LINES 8 /* lines per mux */
#define KMC_UNITS 1 /* max # of KMCs */
#define INITIAL_KMCS 0 /* Number initially enabled */
#define DUP_LINES 4 /* max # of DUP11's */
#define DIB_MAX 100 /* max DIBs */

View File

@@ -483,6 +483,8 @@ typedef struct {
#define DLX_LINES 16 /* max # of KL11/DL11's */
#define DCX_LINES 16 /* max # of DC11's */
#define DUP_LINES 8 /* max # of DUP11/DPV11's */
#define KMC_UNITS 2 /* max # of KMC11s */
#define INITIAL_KMCS 0 /* Number to initially enable */
#define MT_MAXFR (1 << 16) /* magtape max rec */
#define DIB_MAX 100 /* max DIBs */