1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-19 09:28:10 +00:00

PDP10: Added compile time removal of AUXCPU.

This commit is contained in:
Richard Cornwell 2019-03-10 15:24:09 -04:00
parent b7063d4a29
commit 4ba2cc293f

View File

@ -26,6 +26,11 @@
#include "ka10_defs.h"
#include "sim_tmxr.h"
#ifndef NUM_DEVS_AUXCPU
#define NUM_DEVS_AUXCPU 0
#endif
#if NUM_DEVS_AUXCPU > 0
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
@ -389,3 +394,4 @@ t_stat auxcpu_devio(uint32 dev, uint64 *data)
return SCPE_OK;
}
#endif