mirror of
https://github.com/open-simh/simh.git
synced 2026-01-13 23:37:13 +00:00
PDP10: Fix build warning when compiling DZ module
This commit is contained in:
parent
cc7721b96e
commit
d356274d38
@ -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 */
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user