1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 12:02:14 +00:00

PDP10: Added DEUNA/DELUA support back since there exists software which actually supported it.

The code which used it provides some IP packet transport: ftp://ftp.stacken.kth.se/pub/pdp10/tops10/util/
This commit is contained in:
Mark Pizzolato
2015-04-26 15:04:01 -07:00
parent a9e5913d0c
commit 041c866d67
6 changed files with 24 additions and 4 deletions

View File

@@ -699,6 +699,7 @@ typedef struct pdp_dib DIB;
#define INT_V_KMCB 9
#define INT_V_DMCRX 10 /* DMC11/DMR11 */
#define INT_V_DMCTX 11
#define INT_V_XU 15 /* DEUNA/DELUA */
#define INT_V_DZRX 16 /* DZ11 */
#define INT_V_DZTX 17
#define INT_V_RY 18 /* RX211 */

View File

@@ -1997,6 +1997,8 @@ AUTO_CON auto_tab[] = {/*c #v am vm fxa fxv */
{0017550}, {0070} }, /* PC11 reader - fx CSR, fx VEC */
{ { "PTP" }, 1, 1, 0, 0,
{0017554}, {0074} }, /* PC11 punch - fx CSR, fx VEC */
{ { "XU", "XUB" }, 1, 1, 8, 4,
{014510}, {0120} }, /* DEUNA */
{ { "DUP" }, 1, 2, 0, 0,
{0000300}, {0570} }, /* DUP11 bit sync - fx CSR, fx VEC */
{ { "KDP" }, 1, 2, 0, 0,

View File

@@ -55,6 +55,7 @@ extern DEVICE dz_dev;
extern DEVICE ry_dev;
extern DEVICE cr_dev;
extern DEVICE lp20_dev;
extern DEVICE xu_dev;
extern DEVICE dup_dev;
extern DEVICE kmc_dev;
extern DEVICE dmc_dev;
@@ -93,6 +94,7 @@ DEVICE *sim_devices[] = {
&rp_dev,
&tu_dev,
&dz_dev,
&xu_dev,
&dup_dev,
&kmc_dev,
&dmc_dev,