1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-02 06:25:43 +00:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
Mark Pizzolato
2013-07-10 12:04:23 -10:00
2 changed files with 4 additions and 3 deletions

View File

@@ -160,7 +160,7 @@ DEVICE dli_dev = {
1, 10, 31, 1, 8, 8, 1, 10, 31, 1, 8, 8,
NULL, NULL, &dlx_reset, NULL, NULL, &dlx_reset,
NULL, &dlx_attach, &dlx_detach, NULL, &dlx_attach, &dlx_detach,
&dli_dib, DEV_UBUS | DEV_QBUS | DEV_DISABLE | DEV_DIS &dli_dib, DEV_UBUS | DEV_QBUS | DEV_DISABLE | DEV_DIS | DEV_MUX
}; };
/* DLO data structures /* DLO data structures
@@ -219,7 +219,7 @@ DEVICE dlo_dev = {
DLX_LINES, 10, 31, 1, 8, 8, DLX_LINES, 10, 31, 1, 8, 8,
NULL, NULL, &dlx_reset, NULL, NULL, &dlx_reset,
NULL, NULL, NULL, NULL, NULL, NULL,
NULL, DEV_UBUS | DEV_QBUS | DEV_DISABLE | DEV_DIS | DEV_MUX NULL, DEV_UBUS | DEV_QBUS | DEV_DISABLE | DEV_DIS
}; };
/* Terminal input routines */ /* Terminal input routines */

3
scp.c
View File

@@ -3664,7 +3664,8 @@ if (uptr->flags & UNIT_ATT) /* already attached? */
return r; return r;
} }
else else
return SCPE_ALATT; /* Already attached */ if (!(uptr->dynflags & UNIT_ATTMULT))
return SCPE_ALATT; /* Already attached */
sim_trim_endspc (cptr); /* trim trailing spc */ sim_trim_endspc (cptr); /* trim trailing spc */
return scp_attach_unit (dptr, uptr, cptr); /* attach */ return scp_attach_unit (dptr, uptr, cptr); /* attach */
} }