Skip to content

Commit c686f75

Browse files
rcornwellmarkpizz
authored andcommittedMar 10, 2020
KA10: Added support for KL10A/B.
1 parent c7d529c commit c686f75

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+14077
-2542
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ language: c
55
env:
66
# These are supposed to match ALL in makefile.
77
# Each job builds 15 simulators.
8-
- SIM="pdp1 pdp4 pdp6 pdp7 pdp8 pdp9 pdp10 pdp10-ka pdp10-ki pdp11 pdp15 vax microvax3900 microvax1 rtvax1000"
8+
- SIM="pdp1 pdp4 pdp6 pdp7 pdp8 pdp9 pdp10 pdp10-ka pdp10-ki pdp10-kl pdp11 pdp15 vax microvax3900 microvax1 rtvax1000"
99
- SIM="microvax2 vax730 vax750 vax780 vax8200 vax8600 microvax2000 infoserver100 infoserver150vxt microvax3100 microvax3100e vaxstation3100m30 vaxstation3100m38 vaxstation3100m76 vaxstation4000m60"
1010
- SIM="microvax3100m80 vaxstation4000vlc infoserver1000 nova eclipse hp2100 hp3000 i1401 i1620 s3 altair altairz80 gri i7094 ibm1130"
1111
- SIM="id16 id32 sds lgp h316 cdc1700 swtp6800mp-a swtp6800mp-a2 tx-0 ssem b5500 isys8010 isys8020 isys8030 isys8024"

‎PDP10/ka10_ai.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ DEVICE ai_dev = {
279279
AI_NAME, ai_unit, ai_reg, ai_mod,
280280
NUM_UNITS, 8, 18, 1, 8, 36,
281281
NULL, NULL, &ai_reset, NULL, &ai_attach, &ai_detach,
282-
&ai_dib, DEV_DISABLE | DEV_DEBUG, 0, ai_debug,
282+
&ai_dib, DEV_DISABLE | DEV_DEBUG | DEV_DIS, 0, ai_debug,
283283
NULL, NULL, &ai_help, NULL, NULL, &ai_description
284284
};
285285

@@ -997,7 +997,7 @@ t_stat ai_attach (UNIT *uptr, CONST char *cptr)
997997
DIB *dib;
998998

999999
r = attach_unit (uptr, cptr);
1000-
if (r != SCPE_OK)
1000+
if (r != SCPE_OK || (sim_switches & SIM_SW_REST) != 0)
10011001
return r;
10021002
rptr = find_dev_from_unit(uptr);
10031003
if (rptr == 0)

0 commit comments

Comments
 (0)
Please sign in to comment.