SCP: Avoid need for TMXR devices to have dummy DEVICE examine and deposit values
This commit is contained in:
parent
3b8442ce71
commit
c9dae318df
1 changed files with 2 additions and 1 deletions
3
scp.c
3
scp.c
|
@ -8419,7 +8419,8 @@ for (i = 0, j = addr; i < sim_emax; i++, j = j + dptr->aincr) {
|
|||
else {
|
||||
if (!(uptr->flags & UNIT_ATT))
|
||||
return SCPE_UNATT;
|
||||
if (uptr->dynflags & UNIT_NO_FIO)
|
||||
if ((uptr->dynflags & UNIT_NO_FIO) ||
|
||||
(uptr->fileref == NULL))
|
||||
return SCPE_NOFNC;
|
||||
if ((uptr->flags & UNIT_FIX) && (j >= uptr->capac)) {
|
||||
reason = SCPE_NXM;
|
||||
|
|
Loading…
Add table
Reference in a new issue