1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 04:01:38 +00:00

pdp11_dmc.c - Removed DMP “support” through conditional compilation, including removal of SET TYPE command.

- Removed SET POLL command.
	- Changed SET TRANSMIT command to SET PEER
	- Fixed problem with detached device causing socket errors
This commit is contained in:
Mark Pizzolato
2012-12-03 16:56:15 -08:00
parent e91ee504ca
commit 42b7bed6f5
5 changed files with 47 additions and 114 deletions

View File

@@ -55,7 +55,6 @@ extern DEVICE dz_dev;
extern DEVICE vh_dev;
extern DEVICE xu_dev, xub_dev;
extern DEVICE dmc_dev[];
extern DEVICE dmp_dev[];
extern int32 sim_switches;
extern UNIT cpu_unit;
@@ -97,7 +96,6 @@ DEVICE *sim_devices[] = {
&dmc_dev[1],
&dmc_dev[2],
&dmc_dev[3],
&dmp_dev[0],
NULL
};

View File

@@ -52,7 +52,6 @@ extern DEVICE csi_dev, cso_dev;
extern DEVICE xq_dev, xqb_dev;
extern DEVICE vh_dev;
extern DEVICE dmc_dev[];
extern DEVICE dmp_dev[];
extern int32 sim_switches;
extern void WriteB (uint32 pa, int32 val);
@@ -89,7 +88,6 @@ DEVICE *sim_devices[] = {
&dmc_dev[1],
&dmc_dev[2],
&dmc_dev[3],
&dmp_dev[0],
NULL
};