1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-02-13 03:15:02 +00:00

IBM360: Fixed issue with NOP on tape drive.

This commit is contained in:
Richard Cornwell
2022-01-03 23:47:06 -05:00
parent 1ce1bc5f9a
commit ab32208bba

View File

@@ -291,6 +291,12 @@ uint8 mt_startcmd(UNIT *uptr, uint8 cmd) {
return 0;
case 0x3: /* Control */
if (cmd == 0x03) {
uptr->SNS = 0;
return SNS_CHNEND|SNS_DEVEND;
}
/* Fall through */
case 0xb: /* Control */
uptr->SNS = 0;
if ((uptr->flags & UNIT_ATT) == 0) {