1
0
mirror of https://github.com/simh/simh.git synced 2026-01-31 13:53:10 +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

3
scp.c
View File

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