1. New Features 1.1 GRI-909 - This is a new simulator for the GRI-909. - It has been hand-tested; so far, no software has been discovered. 1.2 VAX - SET CPU CONHALT will cause a HALT instruction to return to the boot ROM console rather than to SIMH. SET CPU SIMHALT restores the default behavior. - BRB/W self at IPL 1F stops the simulator. This is the default behavior of VMS at exit. 1.3 PDP-18b - ATTACH -A PTR/PTP attaches the reader and punch in ASCII mode. In ASCII mode, the reader automatically sets the high order bit of incoming alphabetic data, and the punch clears the high order bit of outgoing data. 1.4 SCP - DO -V echoes commands from the file as they are executed. - Under Windows, execution priority is set BELOW_NORMAL when the simulator is running. 2. Release Notes 2.1 Bugs Fixed - PDP-11 CPU: fixed updating of MMR0 on a memory management error. - VAX FPA: changed function names to avoid conflict with C math library. - 1401 MT: read end of record generates group mark without word mark. - 1401 DP: fixed address generation and checking. - SCP: an EXIT within a DO command will cause the simulator to exit. 3. In Progress - Interdata 16b/32b: coded, not tested. - SDS 940: coded, not tested. - IBM 1620: coded, not tested. If you would like to help with the debugging of the untested simulators, they can be made available by special request.
455 lines
15 KiB
C
455 lines
15 KiB
C
/* pdp18b_mt.c: 18b PDP magnetic tape simulator
|
||
|
||
Copyright (c) 1993-2002, Robert M Supnik
|
||
|
||
Permission is hereby granted, free of charge, to any person obtaining a
|
||
copy of this software and associated documentation files (the "Software"),
|
||
to deal in the Software without restriction, including without limitation
|
||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
and/or sell copies of the Software, and to permit persons to whom the
|
||
Software is furnished to do so, subject to the following conditions:
|
||
|
||
The above copyright notice and this permission notice shall be included in
|
||
all copies or substantial portions of the Software.
|
||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
ROBERT M SUPNIK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
Except as contained in this notice, the name of Robert M Supnik shall not
|
||
be used in advertising or otherwise to promote the sale, use or other dealings
|
||
in this Software without prior written authorization from Robert M Supnik.
|
||
|
||
mt (PDP-9) TC59 magtape
|
||
(PDP-15) TC59D magtape
|
||
|
||
30-May-02 RMS Widened POS to 32b
|
||
22-Apr-02 RMS Added maximum record length test
|
||
06-Jan-02 RMS Revised enabled/disable support
|
||
29-Nov-01 RMS Added read only unit support
|
||
25-Nov-01 RMS Revised interrupt structure
|
||
Changed UST, POS, FLG to arrays
|
||
26-Apr-01 RMS Added device enable/disable support
|
||
15-Feb-01 RMS Fixed 3-cycle data break sequence
|
||
04-Oct-98 RMS V2.4 magtape format
|
||
22-Jan-97 RMS V2.3 magtape format
|
||
29-Jun-96 RMS Added unit enable/disable support
|
||
|
||
Magnetic tapes are represented as a series of variable records
|
||
of the form:
|
||
|
||
32b byte count
|
||
byte 0
|
||
byte 1
|
||
:
|
||
byte n-2
|
||
byte n-1
|
||
32 byte count
|
||
|
||
If the byte count is odd, the record is padded with an extra byte
|
||
of junk. File marks are represented by a byte count of 0.
|
||
*/
|
||
|
||
#include "pdp18b_defs.h"
|
||
|
||
#define MT_NUMDR 8 /* #drives */
|
||
#define UNIT_V_WLK (UNIT_V_UF + 0) /* write locked */
|
||
#define UNIT_WLK 1 << UNIT_V_WLK
|
||
#define UNIT_W_UF 2 /* saved flag width */
|
||
#define USTAT u3 /* unit status */
|
||
#define UNUM u4 /* unit number */
|
||
#define MT_MAXFR (1 << 16) /* max record length */
|
||
#define DBSIZE (1 << 12) /* max word count */
|
||
#define DBMASK (DBSIZE - 1)
|
||
#define MT_WC 032 /* word count */
|
||
#define MT_CA 033 /* current addr */
|
||
#define UNIT_WPRT (UNIT_WLK | UNIT_RO) /* write protect */
|
||
|
||
/* Command/unit - mt_cu */
|
||
|
||
#define CU_V_UNIT 15 /* unit */
|
||
#define CU_M_UNIT 07
|
||
#define CU_PARITY 0040000 /* parity select */
|
||
#define CU_DUMP 0020000 /* dump mode */
|
||
#define CU_ERASE 0010000 /* ext rec gap */
|
||
#define CU_V_CMD 9 /* command */
|
||
#define CU_M_CMD 07
|
||
#define FN_NOP 00
|
||
#define FN_REWIND 01
|
||
#define FN_READ 02
|
||
#define FN_CMPARE 03
|
||
#define FN_WRITE 04
|
||
#define FN_WREOF 05
|
||
#define FN_SPACEF 06
|
||
#define FN_SPACER 07
|
||
#define CU_IE 0000400 /* interrupt enable */
|
||
#define CU_V_TYPE 6 /* drive type */
|
||
#define CU_M_TYPE 03
|
||
#define TY_9TK 3
|
||
#define GET_UNIT(x) (((x) >> CU_V_UNIT) & CU_M_UNIT)
|
||
#define GET_CMD(x) (((x) >> CU_V_CMD) & CU_M_CMD)
|
||
#define GET_TYPE(x) (((x) >> CU_V_TYPE) & CU_M_TYPE)
|
||
#define PACKED(x) (((x) & CU_DUMP) || (GET_TYPE (x) != TY_9TK))
|
||
|
||
/* Status - stored in mt_sta or (*) uptr -> USTAT */
|
||
|
||
#define STA_ERR 0400000 /* error */
|
||
#define STA_REW 0200000 /* *rewinding */
|
||
#define STA_BOT 0100000 /* *start of tape */
|
||
#define STA_ILL 0040000 /* illegal cmd */
|
||
#define STA_PAR 0020000 /* parity error */
|
||
#define STA_EOF 0010000 /* *end of file */
|
||
#define STA_EOT 0004000 /* *end of tape */
|
||
#define STA_CPE 0002000 /* compare error */
|
||
#define STA_RLE 0001000 /* rec lnt error */
|
||
#define STA_DLT 0000400 /* data late */
|
||
#define STA_BAD 0000200 /* bad tape */
|
||
#define STA_DON 0000100 /* done */
|
||
|
||
#define STA_CLR 0000077 /* always clear */
|
||
#define STA_DYN (STA_REW | STA_BOT | STA_EOF | STA_EOT)
|
||
/* kept in USTAT */
|
||
#define STA_EFLGS (STA_BOT | STA_ILL | STA_PAR | STA_EOF | \
|
||
STA_EOT | STA_CPE | STA_RLE | STA_DLT | STA_BAD)
|
||
/* error flags */
|
||
|
||
extern int32 M[];
|
||
extern int32 int_hwre[API_HLVL+1], dev_enb;
|
||
extern UNIT cpu_unit;
|
||
int32 mt_cu = 0; /* command/unit */
|
||
int32 mt_sta = 0; /* status register */
|
||
int32 mt_time = 10; /* record latency */
|
||
int32 mt_stopioe = 1; /* stop on error */
|
||
t_stat mt_svc (UNIT *uptr);
|
||
t_stat mt_reset (DEVICE *dptr);
|
||
t_stat mt_attach (UNIT *uptr, char *cptr);
|
||
t_stat mt_detach (UNIT *uptr);
|
||
int32 mt_updcsta (UNIT *uptr, int32 val);
|
||
UNIT *mt_busy (void);
|
||
|
||
/* MT data structures
|
||
|
||
mt_dev MT device descriptor
|
||
mt_unit MT unit list
|
||
mt_reg MT register list
|
||
mt_mod MT modifier list
|
||
*/
|
||
|
||
UNIT mt_unit[] = {
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) },
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) },
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) },
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) },
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) },
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) },
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) },
|
||
{ UDATA (&mt_svc, UNIT_ATTABLE+UNIT_DISABLE+UNIT_ROABLE, 0) } };
|
||
|
||
REG mt_reg[] = {
|
||
{ ORDATA (STA, mt_sta, 18) },
|
||
{ ORDATA (CMD, mt_cu, 18) },
|
||
{ ORDATA (WC, M[MT_WC], 18) },
|
||
{ ORDATA (CA, M[MT_CA], 18) },
|
||
{ FLDATA (INT, int_hwre[API_MTA], INT_V_MTA) },
|
||
{ FLDATA (STOP_IOE, mt_stopioe, 0) },
|
||
{ DRDATA (TIME, mt_time, 24), PV_LEFT },
|
||
{ URDATA (UST, mt_unit[0].USTAT, 8, 16, 0, MT_NUMDR, 0) },
|
||
{ URDATA (POS, mt_unit[0].pos, 10, 32, 0,
|
||
MT_NUMDR, PV_LEFT | REG_RO) },
|
||
{ URDATA (FLG, mt_unit[0].flags, 8, UNIT_W_UF, UNIT_V_UF - 1,
|
||
MT_NUMDR, REG_HRO) },
|
||
{ FLDATA (*DEVENB, dev_enb, ENB_V_MTA), REG_HRO },
|
||
{ NULL } };
|
||
|
||
MTAB mt_mod[] = {
|
||
{ UNIT_WLK, 0, "write enabled", "WRITEENABLED", NULL },
|
||
{ UNIT_WLK, UNIT_WLK, "write locked", "LOCKED", NULL },
|
||
{ MTAB_XTD|MTAB_VDV, ENB_MTA, NULL, "ENABLED", &set_enb },
|
||
{ MTAB_XTD|MTAB_VDV, ENB_MTA, NULL, "DISABLED", &set_dsb },
|
||
{ 0 } };
|
||
|
||
DEVICE mt_dev = {
|
||
"MT", mt_unit, mt_reg, mt_mod,
|
||
MT_NUMDR, 10, 31, 1, 8, 8,
|
||
NULL, NULL, &mt_reset,
|
||
NULL, &mt_attach, &mt_detach };
|
||
|
||
/* IOT routine */
|
||
|
||
int32 mt (int32 pulse, int32 AC)
|
||
{
|
||
int32 f;
|
||
UNIT *uptr;
|
||
|
||
uptr = mt_dev.units + GET_UNIT (mt_cu); /* get unit */
|
||
mt_updcsta (uptr, 0); /* update status */
|
||
if (pulse == 001) /* MTTR */
|
||
return (!sim_is_active (uptr))? IOT_SKP + AC: AC;
|
||
if (pulse == 021) /* MTCR */
|
||
return (!mt_busy ())? IOT_SKP + AC: AC;
|
||
if (pulse == 041) /* MTSF */
|
||
return (mt_sta & (STA_ERR | STA_DON))? IOT_SKP + AC: AC;
|
||
if (pulse == 002) return (mt_cu & 0777700); /* MTRC */
|
||
if (pulse == 042) return mt_sta; /* MTRS */
|
||
if ((pulse & 062) == 022) { /* MTAF, MTLC */
|
||
if (!mt_busy ()) mt_cu = mt_sta = 0; /* if not busy, clr */
|
||
mt_sta = mt_sta & ~(STA_ERR | STA_DON); } /* clear flags */
|
||
if ((pulse & 064) == 024) /* MTCM, MTLC */
|
||
mt_cu = (mt_cu & 0770700) | (AC & 0777700); /* load status */
|
||
if (pulse == 004) { /* MTGO */
|
||
f = GET_CMD (mt_cu); /* get function */
|
||
if (mt_busy () || (sim_is_active (uptr)) ||
|
||
(((f == FN_SPACER) || (f == FN_REWIND)) & (uptr -> pos == 0)) ||
|
||
(((f == FN_WRITE) || (f == FN_WREOF)) && (uptr -> flags & UNIT_WPRT))
|
||
|| ((uptr -> flags & UNIT_ATT) == 0) || (f == FN_NOP))
|
||
mt_sta = mt_sta | STA_ILL; /* illegal op flag */
|
||
else { if (f == FN_REWIND) uptr -> USTAT = STA_REW; /* rewind? */
|
||
else mt_sta = uptr -> USTAT = 0; /* no, clear status */
|
||
sim_activate (uptr, mt_time); } } /* start io */
|
||
mt_updcsta (mt_dev.units + GET_UNIT (mt_cu), 0); /* update status */
|
||
return AC;
|
||
}
|
||
|
||
/* Unit service
|
||
|
||
If rewind done, reposition to start of tape, set status
|
||
else, do operation, set done, interrupt
|
||
*/
|
||
|
||
t_stat mt_svc (UNIT *uptr)
|
||
{
|
||
int32 c, c1, c2, c3, f, i, p, u, err;
|
||
int32 wc, xma;
|
||
t_stat rval;
|
||
t_mtrlnt tbc, cbc;
|
||
static uint8 dbuf[(3 * DBSIZE)];
|
||
static t_mtrlnt bceof = { 0 };
|
||
|
||
u = uptr -> UNUM; /* get unit number */
|
||
if (uptr -> USTAT & STA_REW) { /* rewind? */
|
||
uptr -> pos = 0; /* update position */
|
||
if (uptr -> flags & UNIT_ATT) uptr -> USTAT = STA_BOT;
|
||
else uptr -> USTAT = 0;
|
||
if (u == GET_UNIT (mt_cu)) mt_updcsta (uptr, STA_DON);
|
||
return SCPE_OK; }
|
||
|
||
f = GET_CMD (mt_cu); /* get command */
|
||
if ((uptr -> flags & UNIT_ATT) == 0) { /* if not attached */
|
||
mt_updcsta (uptr, STA_ILL); /* illegal operation */
|
||
return IORETURN (mt_stopioe, SCPE_UNATT); }
|
||
|
||
if ((f == FN_WRITE) || (f == FN_WREOF)) { /* write? */
|
||
if (uptr -> flags & UNIT_WPRT) { /* write locked? */
|
||
mt_updcsta (uptr, STA_ILL); /* illegal operation */
|
||
return SCPE_OK; }
|
||
mt_cu = mt_cu & ~CU_ERASE; } /* clear erase flag */
|
||
|
||
err = 0;
|
||
rval = SCPE_OK;
|
||
switch (f) { /* case on function */
|
||
|
||
/* Unit service, continued */
|
||
|
||
case FN_READ: /* read */
|
||
case FN_CMPARE: /* read/compare */
|
||
fseek (uptr -> fileref, uptr -> pos, SEEK_SET);
|
||
fxread (&tbc, sizeof (t_mtrlnt), 1, uptr -> fileref);
|
||
if ((err = ferror (uptr -> fileref)) || /* error or eof? */
|
||
(feof (uptr -> fileref))) {
|
||
uptr -> USTAT = STA_EOT;
|
||
mt_updcsta (uptr, STA_RLE);
|
||
break; }
|
||
if (tbc == 0) { /* tape mark? */
|
||
uptr -> USTAT = STA_EOF;
|
||
mt_updcsta (uptr, STA_RLE);
|
||
uptr -> pos = uptr -> pos + sizeof (t_mtrlnt);
|
||
break; }
|
||
tbc = MTRL (tbc); /* ignore error flag */
|
||
if (tbc > MT_MAXFR) return SCPE_MTRLNT; /* record too long? */
|
||
wc = DBSIZE - (M[MT_WC] & DBMASK); /* get word count */
|
||
cbc = PACKED (mt_cu)? wc * 3: wc * 2; /* expected bc */
|
||
if (tbc != cbc) mt_sta = mt_sta | STA_RLE; /* wrong size? */
|
||
if (tbc < cbc) { /* record small? */
|
||
cbc = tbc; /* use smaller */
|
||
wc = PACKED (mt_cu)? ((tbc + 2) / 3): ((tbc + 1) / 2); }
|
||
i = fxread (dbuf, sizeof (int8), cbc, uptr -> fileref);
|
||
for ( ; i < cbc; i++) dbuf[i] = 0; /* fill with 0's */
|
||
err = ferror (uptr -> fileref);
|
||
for (i = p = 0; i < wc; i++) { /* copy buffer */
|
||
M[MT_WC] = (M[MT_WC] + 1) & 0777777; /* inc WC, CA */
|
||
M[MT_CA] = (M[MT_CA] + 1) & 0777777;
|
||
xma = M[MT_CA] & ADDRMASK;
|
||
if (PACKED (mt_cu)) { /* packed? */
|
||
c1 = dbuf[p++] & 077;
|
||
c2 = dbuf[p++] & 077;
|
||
c3 = dbuf[p++] & 077;
|
||
c = (c1 << 12) | (c2 << 6) | c3; }
|
||
else { c1 = dbuf[p++];
|
||
c2 = dbuf[p++];
|
||
c = (c1 << 8) | c2; }
|
||
if ((f == FN_READ) && MEM_ADDR_OK (xma)) M[xma] = c;
|
||
else if ((f == FN_CMPARE) && (c != (M[xma] &
|
||
(PACKED (mt_cu)? 0777777: 0177777)))) {
|
||
mt_updcsta (uptr, STA_CPE);
|
||
break; } }
|
||
uptr -> pos = uptr -> pos + ((tbc + 1) & ~1) +
|
||
(2 * sizeof (t_mtrlnt));
|
||
break;
|
||
case FN_WRITE: /* write */
|
||
fseek (uptr -> fileref, uptr -> pos, SEEK_SET);
|
||
wc = DBSIZE - (M[MT_WC] & DBMASK); /* get word count */
|
||
tbc = PACKED (mt_cu)? wc * 3: wc * 2;
|
||
fxwrite (&tbc, sizeof (t_mtrlnt), 1, uptr -> fileref);
|
||
for (i = p = 0; i < wc; i++) { /* copy buf to tape */
|
||
M[MT_WC] = (M[MT_WC] + 1) & 0777777; /* inc WC, CA */
|
||
M[MT_CA] = (M[MT_CA] + 1) & 0777777;
|
||
xma = M[MT_CA] & ADDRMASK;
|
||
if (PACKED (mt_cu)) { /* packed? */
|
||
dbuf[p++] = (M[xma] >> 12) & 077;
|
||
dbuf[p++] = (M[xma] >> 6) & 077;
|
||
dbuf[p++] = M[xma] & 077; }
|
||
else { dbuf[p++] = (M[xma] >> 8) & 0377;
|
||
dbuf[p++] = M[xma] & 0377; } }
|
||
fxwrite (dbuf, sizeof (char), (tbc + 1) & ~1, uptr -> fileref);
|
||
fxwrite (&tbc, sizeof (t_mtrlnt), 1, uptr -> fileref);
|
||
err = ferror (uptr -> fileref);
|
||
uptr -> pos = uptr -> pos + ((tbc + 1) & ~1) +
|
||
(2 * sizeof (t_mtrlnt));
|
||
break;
|
||
|
||
/* Unit service, continued */
|
||
|
||
case FN_WREOF:
|
||
fseek (uptr -> fileref, uptr -> pos, SEEK_SET);
|
||
fxwrite (&bceof, sizeof (t_mtrlnt), 1, uptr -> fileref);
|
||
err = ferror (uptr -> fileref);
|
||
uptr -> pos = uptr -> pos + sizeof (t_mtrlnt);
|
||
uptr -> USTAT = STA_EOF;
|
||
break;
|
||
case FN_SPACEF: /* space forward */
|
||
do { fseek (uptr -> fileref, uptr -> pos, SEEK_SET);
|
||
fxread (&tbc, sizeof (t_mtrlnt), 1, uptr -> fileref); /* read bc */
|
||
if ((err = ferror (uptr -> fileref)) || /* error or eof? */
|
||
feof (uptr -> fileref)) {
|
||
uptr -> USTAT = STA_EOT;
|
||
break; }
|
||
if (tbc == 0) { /* zero bc? */
|
||
uptr -> USTAT = STA_EOF;
|
||
uptr -> pos = uptr -> pos + sizeof (t_mtrlnt);
|
||
break; }
|
||
uptr -> pos = uptr -> pos + ((MTRL (tbc) + 1) & ~1) +
|
||
(2 * sizeof (t_mtrlnt)); }
|
||
while ((M[MT_WC] = (M[MT_WC] + 1) & 0777777) != 0);
|
||
break;
|
||
case FN_SPACER: /* space reverse */
|
||
if (uptr -> pos == 0) { /* at BOT? */
|
||
uptr -> USTAT = STA_BOT;
|
||
break; }
|
||
do { fseek (uptr -> fileref, uptr -> pos - sizeof (t_mtrlnt),
|
||
SEEK_SET);
|
||
fxread (&tbc, sizeof (t_mtrlnt), 1, uptr -> fileref);
|
||
tbc = MTRL (tbc); /* ignore error flag */
|
||
if ((err = ferror (uptr -> fileref)) || /* error or eof? */
|
||
feof (uptr -> fileref)) {
|
||
uptr -> USTAT = STA_BOT;
|
||
uptr -> pos = 0;
|
||
break; }
|
||
if (tbc == 0) { /* end of file? */
|
||
uptr -> USTAT = STA_EOF;
|
||
uptr -> pos = uptr -> pos - sizeof (t_mtrlnt);
|
||
break; }
|
||
uptr -> pos = uptr -> pos - ((tbc + 1) & ~1) -
|
||
(2 * sizeof (t_mtrlnt));
|
||
if (uptr -> pos == 0) { /* at BOT? */
|
||
uptr -> USTAT = STA_BOT;
|
||
break; } }
|
||
while ((M[MT_WC] = (M[MT_WC] + 1) & 0777777) != 0);
|
||
break; } /* end case */
|
||
|
||
/* Unit service, continued */
|
||
|
||
if (err != 0) { /* I/O error */
|
||
mt_updcsta (uptr, STA_PAR); /* flag error */
|
||
perror ("MT I/O error");
|
||
rval = SCPE_IOERR;
|
||
clearerr (uptr -> fileref); }
|
||
mt_updcsta (uptr, STA_DON); /* set done */
|
||
return IORETURN (mt_stopioe, rval);
|
||
}
|
||
|
||
/* Update controller status */
|
||
|
||
int32 mt_updcsta (UNIT *uptr, int32 new)
|
||
{
|
||
mt_sta = (mt_sta & ~(STA_DYN | STA_ERR | STA_CLR)) |
|
||
(uptr -> USTAT & STA_DYN) | new;
|
||
if (mt_sta & STA_EFLGS) mt_sta = mt_sta | STA_ERR; /* error flag */
|
||
if ((mt_sta & (STA_ERR | STA_DON)) && ((mt_cu & CU_IE) == 0))
|
||
SET_INT (MTA);
|
||
else CLR_INT (MTA); /* int request */
|
||
return mt_sta;
|
||
}
|
||
|
||
/* Test if controller busy */
|
||
|
||
UNIT *mt_busy (void)
|
||
{
|
||
int32 u;
|
||
UNIT *uptr;
|
||
|
||
for (u = 0; u < MT_NUMDR; u++) { /* loop thru units */
|
||
uptr = mt_dev.units + u;
|
||
if (sim_is_active (uptr) && ((uptr -> USTAT & STA_REW) == 0))
|
||
return uptr; }
|
||
return NULL;
|
||
}
|
||
|
||
/* Reset routine */
|
||
|
||
t_stat mt_reset (DEVICE *dptr)
|
||
{
|
||
int32 u;
|
||
UNIT *uptr;
|
||
|
||
mt_cu = mt_sta = 0;
|
||
for (u = 0; u < MT_NUMDR; u++) { /* loop thru units */
|
||
uptr = mt_dev.units + u;
|
||
uptr -> UNUM = u; /* init drive number */
|
||
sim_cancel (uptr); /* cancel activity */
|
||
if (uptr -> flags & UNIT_ATT) uptr -> USTAT = STA_BOT;
|
||
else uptr -> USTAT = 0; }
|
||
mt_updcsta (&mt_unit[0], 0); /* update status */
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* IORS routine */
|
||
|
||
int32 mt_iors (void)
|
||
{
|
||
return (mt_sta & (STA_ERR | STA_DON))? IOS_MTA: 0;
|
||
}
|
||
|
||
/* Attach routine */
|
||
|
||
t_stat mt_attach (UNIT *uptr, char *cptr)
|
||
{
|
||
t_stat r;
|
||
|
||
r = attach_unit (uptr, cptr);
|
||
if (r != SCPE_OK) return r;
|
||
uptr -> USTAT = STA_BOT;
|
||
mt_updcsta (mt_dev.units + GET_UNIT (mt_cu), 0); /* update status */
|
||
return r;
|
||
}
|
||
|
||
/* Detach routine */
|
||
|
||
t_stat mt_detach (UNIT* uptr)
|
||
{
|
||
if (!sim_is_active (uptr)) uptr -> USTAT = 0;
|
||
mt_updcsta (mt_dev.units + GET_UNIT (mt_cu), 0); /* update status */
|
||
return detach_unit (uptr);
|
||
}
|