mirror of
https://github.com/open-simh/simh.git
synced 2026-01-13 23:37:13 +00:00
SCP: Avoid need for TMXR devices to have dummy DEVICE examine and deposit values
This commit is contained in:
parent
3b8442ce71
commit
c9dae318df
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…
x
Reference in New Issue
Block a user