PDP10: Fix build warning when compiling DZ module

This commit is contained in:
Mark Pizzolato 2018-04-10 10:24:49 -07:00
parent cc7721b96e
commit d356274d38
2 changed files with 4 additions and 2 deletions

View file

@ -627,8 +627,8 @@ typedef struct pdp_dib DIB;
/* I/O system parameters */
#define DZ_MUXES 4 /* max # of muxes */
#define DZ_LINES 8 /* lines per mux */
#define DZ_MUXES 4 /* default # of muxes */
#define MAX_DZ_MUXES 4 /* max # of muxes */
#define KMC_UNITS 1 /* max # of KMCs */
#define INITIAL_KMCS 0 /* Number initially enabled */
#define DUP_LINES 4 /* max # of DUP11's */

View file

@ -78,7 +78,9 @@
#if !defined (DZ_MUXES)
#define DZ_MUXES 1
#endif
#if !defined (MAX_DZ_MUXES)
#define MAX_DZ_MUXES 32
#endif
#define DZ_LINES (UNIBUS ? 8 : 4) /* lines per DZ mux */
#if DZ_MUXES > MAX_DZ_MUXES