mirror of
https://github.com/simh/simh.git
synced 2026-01-25 19:56:25 +00:00
Notes For V3.0-0
Because some key files have changed, V3.0 should be unzipped to a clean directory. 1. New Features in 3.0-0 1.1 SCP and Libraries - Added ASSIGN/DEASSIGN (logical name) commands. - Changed RESTORE to unconditionally detach files. - Added E11 and TPC format support to magtape library. - Fixed bug in SHOW CONNECTIONS. - Added USE_ADDR64 support 1.2 All magtapes - Magtapes support SIMH format, E11 format, and TPC format (read only). - SET <tape_unit> FORMAT=format sets the specified tape unit's format. - SHOW <tape_unit> FORMAT displays the specified tape unit's format. - Tape format can also be set as part of the ATTACH command, using the -F switch. 1.3 VAX - VAX can be compiled without USE_INT64. - If compiled with USE_INT64 and USE_ADDR64, RQ and TQ controllers support files > 2GB. - VAX ROM has speed control (SET ROM DELAY/NODELAY). 2. Bugs Fixed in 3.01-0 2.1 VAX - Fixed CVTfi bug: integer overflow not set if exponent out of range - Fixed EMODx bugs: o First and second operands reversed o Separated fraction received wrong exponent o Overflow calculation on separated integer incorrect o Fraction not set to zero if exponent out of range - Fixed interval timer and ROM access to pass power-up self-test even on very fast host processors (fixes from Mark Pizzolato). 2.2 1401 - Fixed mnemonic, instruction lengths, and reverse scan length check bug for MCS. - Fixed MCE bug, BS off by 1 if zero suppress. - Fixed chaining bug, D lost if return to SCP. - Fixed H branch, branch occurs after continue. - Added check for invalid 8 character MCW, LCA. - Fixed magtape load-mode end of record response. 2.3 Nova - Fixed DSK variable size interaction with restore. 2.4 PDP-1 - Fixed DT variable size interaction with restore. 2.5 PDP-11 - Fixed DT variable size interaction with restore. - Fixed bug in MMR1 update (found by Tim Stark). - Added XQ features and fixed bugs: o Corrected XQ interrupts on IE state transition (code by Tom Evans). o Added XQ interrupt clear on soft reset. o Removed XQ interrupt when setting XL or RL (multiple people). o Added SET/SHOW XQ STATS. o Added SHOW XQ FILTERS. o Added ability to split received packet into multiple buffers. o Added explicit runt and giant packet processing. 2.6 PDP-18B - Fixed DT, RF variable size interaction with restore. - Fixed MT bug in MTTR. 2.7 PDP-8 - Fixed DT, DF, RF, RX variable size interaction with restore. - Fixed MT bug in SKTR. 2.8 HP2100 - Fixed bug in DP (13210A controller only), DQ read status. - Fixed bug in DP, DQ seek complete. 2.9 GRI - Fixed bug in SC queue pointer management. 3. New Features in 3.0 vs prior releases N/A 4. Bugs Fixed in 3.0 vs prior releases N/A 5. General Notes WARNING: The RESTORE command has changed. RESTORE will now detach an attached file on a unit, if that unit did not have an attached file in the saved configuration. This is required to assure that the unit flags and the file state are consistent. WARNING: The compilation scheme for the PDP-10, PDP-11, and VAX has changed. Use one of the supplied build files, or read the documentation carefully, before compiling any of these simulators.
This commit is contained in:
committed by
Mark Pizzolato
parent
43385c9616
commit
4ffd3be790
@@ -1,6 +1,6 @@
|
||||
/* pdp10_cpu.c: PDP-10 CPU simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M. Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
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.
|
||||
|
||||
19-May-03 RMS Revised for new conditional compilation scheme
|
||||
09-Jan-03 RMS Added DEUNA/DELUA support
|
||||
29-Sep-02 RMS Added variable vector, RX211 support
|
||||
22-Apr-02 RMS Removed magtape record length error
|
||||
@@ -39,6 +40,10 @@
|
||||
#ifndef _PDP10_DEFS_H_
|
||||
#define _PDP10_DEFS_H_ 0
|
||||
|
||||
#ifndef VM_PDP10
|
||||
#define VM_PDP10 0
|
||||
#endif
|
||||
|
||||
#include "sim_defs.h" /* simulator defns */
|
||||
|
||||
/* Digital Equipment Corporation's 36b family had six implementations:
|
||||
@@ -614,6 +619,8 @@ typedef struct pdp_dib DIB;
|
||||
#define FST 0 /* Unibus 1 */
|
||||
#define MAP 1 /* Unibus 3 */
|
||||
|
||||
#define DEV_RDX 8 /* default device radix */
|
||||
|
||||
/* I/O page layout */
|
||||
|
||||
#define IOPAGEBASE 0760000 /* I/O page base */
|
||||
@@ -729,10 +736,10 @@ typedef struct pdp_dib DIB;
|
||||
|
||||
/* Function prototypes */
|
||||
|
||||
int32 Map_ReadB (t_addr ba, int32 bc, uint8 *buf, t_bool ub);
|
||||
int32 Map_ReadW (t_addr ba, int32 bc, uint16 *buf, t_bool ub);
|
||||
int32 Map_WriteB (t_addr ba, int32 bc, uint8 *buf, t_bool ub);
|
||||
int32 Map_WriteW (t_addr ba, int32 bc, uint16 *buf, t_bool ub);
|
||||
int32 Map_ReadB (uint32 ba, int32 bc, uint8 *buf, t_bool ub);
|
||||
int32 Map_ReadW (uint32 ba, int32 bc, uint16 *buf, t_bool ub);
|
||||
int32 Map_WriteB (uint32 ba, int32 bc, uint8 *buf, t_bool ub);
|
||||
int32 Map_WriteW (uint32 ba, int32 bc, uint16 *buf, t_bool ub);
|
||||
t_stat set_addr (UNIT *uptr, int32 val, char *cptr, void *desc);
|
||||
t_stat show_addr (FILE *st, UNIT *uptr, int32 val, void *desc);
|
||||
t_stat set_vec (UNIT *uptr, int32 val, char *cptr, void *desc);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
To: Users
|
||||
From: Bob Supnik
|
||||
Subj: PDP-10 Simulator Usage
|
||||
Date: 15-Jan-2003
|
||||
Date: 15-May-2003
|
||||
|
||||
COPYRIGHT NOTICE
|
||||
|
||||
@@ -36,12 +36,10 @@ This memorandum documents the PDP-10 simulator.
|
||||
|
||||
1. Simulator Files
|
||||
|
||||
To compile the PDP-10, you must define USE_INT64 as part of the compilation
|
||||
command line.
|
||||
To compile the PDP-10, you must define VM_PDP10 and USE_INT64 as part of the
|
||||
compilation command line.
|
||||
|
||||
sim/ dec_dz.h
|
||||
dec_pt.h
|
||||
sim_defs.h
|
||||
sim/ sim_defs.h
|
||||
sim_rev.h
|
||||
sim_sock.h
|
||||
sim_tmxr.h
|
||||
@@ -54,19 +52,19 @@ sim/ dec_dz.h
|
||||
|
||||
sim/pdp10/ pdp10_defs.h
|
||||
pdp10_cpu.c
|
||||
pdp10_dz.c
|
||||
pdp10_fe.c
|
||||
pdp10_ksio.c
|
||||
pdp10_lp20.c
|
||||
pdp10_mdfp.c
|
||||
pdp10_pag.c
|
||||
pdp10_pt.c
|
||||
pdp10_rp.c
|
||||
pdp10_sys.c
|
||||
pdp10_tu.c
|
||||
pdp10_xtnd.c
|
||||
|
||||
sim/pdp11/ pdp11_ry.c
|
||||
sim/pdp11/ pdp11_dz.c
|
||||
pdp11_pt.c
|
||||
pdp11_ry.c
|
||||
pdp11_xu.c
|
||||
|
||||
2. PDP-10 Features
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
/* pdp10_dz.c: DZ11 terminal multiplexor 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.
|
||||
|
||||
dz DZ11 terminal multiplexor
|
||||
*/
|
||||
|
||||
#define VM_PDP10 0 /* no flt addr */
|
||||
#define RANK_DZ 0 /* no autoconfig */
|
||||
|
||||
#include "pdp10_defs.h"
|
||||
#include "dec_dz.h"
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_fe.c: PDP-10 front end (console terminal) simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
fe KS10 console front end
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
22-Dec-02 RMS Added break support
|
||||
30-May-02 RMS Widened COUNT to 32b
|
||||
30-Nov-01 RMS Added extended SET/SHOW support
|
||||
@@ -59,10 +60,10 @@ UNIT fe_unit[] = {
|
||||
|
||||
REG fe_reg[] = {
|
||||
{ ORDATA (IBUF, fei_unit.buf, 8) },
|
||||
{ DRDATA (ICOUNT, fei_unit.pos, 32), REG_RO + PV_LEFT },
|
||||
{ DRDATA (ICOUNT, fei_unit.pos, T_ADDR_W), REG_RO + PV_LEFT },
|
||||
{ DRDATA (ITIME, fei_unit.wait, 24), REG_NZ + PV_LEFT },
|
||||
{ ORDATA (OBUF, feo_unit.buf, 8) },
|
||||
{ DRDATA (OCOUNT, feo_unit.pos, 32), REG_RO + PV_LEFT },
|
||||
{ DRDATA (OCOUNT, feo_unit.pos, T_ADDR_W), REG_RO + PV_LEFT },
|
||||
{ DRDATA (OTIME, feo_unit.wait, 24), REG_NZ + PV_LEFT },
|
||||
{ NULL } };
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_ksio.c: PDP-10 KS10 I/O subsystem simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
uba Unibus adapters
|
||||
|
||||
12-Mar-03 RMS Added logical name support
|
||||
10-Oct-02 RMS Revised for dynamic table generation
|
||||
Added SHOW IOSPACE routine
|
||||
29-Sep-02 RMS Added variable vector, central map support
|
||||
@@ -405,9 +406,9 @@ pa10 = (ubmap[ub][vpn] + PAG_GETOFF (ba >> 2)) & PAMASK;
|
||||
return pa10;
|
||||
}
|
||||
|
||||
int32 Map_ReadB (t_addr ba, int32 bc, uint8 *buf, t_bool ub)
|
||||
int32 Map_ReadB (uint32 ba, int32 bc, uint8 *buf, t_bool ub)
|
||||
{
|
||||
t_addr lim;
|
||||
uint32 lim;
|
||||
a10 pa10;
|
||||
|
||||
lim = ba + bc;
|
||||
@@ -421,9 +422,9 @@ for ( ; ba < lim; ba++) { /* by bytes */
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32 Map_ReadW (t_addr ba, int32 bc, uint16 *buf, t_bool ub)
|
||||
int32 Map_ReadW (uint32 ba, int32 bc, uint16 *buf, t_bool ub)
|
||||
{
|
||||
t_addr lim;
|
||||
uint32 lim;
|
||||
a10 pa10;
|
||||
|
||||
ba = ba & ~01; /* align start */
|
||||
@@ -438,9 +439,9 @@ for ( ; ba < lim; ba = ba + 2) { /* by words */
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32 Map_WriteB (t_addr ba, int32 bc, uint8 *buf, t_bool ub)
|
||||
int32 Map_WriteB (uint32 ba, int32 bc, uint8 *buf, t_bool ub)
|
||||
{
|
||||
t_addr lim;
|
||||
uint32 lim;
|
||||
a10 pa10;
|
||||
static d10 mask = 0377;
|
||||
|
||||
@@ -455,9 +456,9 @@ for ( ; ba < lim; ba++) { /* by bytes */
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32 Map_WriteW (t_addr ba, int32 bc, uint16 *buf, t_bool ub)
|
||||
int32 Map_WriteW (uint32 ba, int32 bc, uint16 *buf, t_bool ub)
|
||||
{
|
||||
t_addr lim;
|
||||
uint32 lim;
|
||||
a10 pa10;
|
||||
d10 val;
|
||||
|
||||
@@ -708,9 +709,11 @@ for (i = 0; (dptr = sim_devices[i]) != NULL; i++) { /* loop thru dev */
|
||||
(curr->ba < (dibp->ba + dibp->lnt))) ||
|
||||
((end >= dibp->ba) && /* overlap end? */
|
||||
(end < (dibp->ba + dibp->lnt)))) {
|
||||
printf ("Device %s address conflict at %08o\n", dptr->name, dibp->ba);
|
||||
printf ("Device %s address conflict at %08o\n",
|
||||
sim_dname (dptr), dibp->ba);
|
||||
if (sim_log) fprintf (sim_log,
|
||||
"Device %s address conflict at %08o\n", dptr->name, dibp->ba);
|
||||
"Device %s address conflict at %08o\n",
|
||||
sim_dname (dptr), dibp->ba);
|
||||
return TRUE; } }
|
||||
return FALSE;
|
||||
}
|
||||
@@ -781,7 +784,7 @@ for (i = 0; dib_tab[i] != NULL; i++) { /* print table */
|
||||
break; } }
|
||||
fprintf (st, "%07o - %07o\t%s\n", dib_tab[i]->ba,
|
||||
dib_tab[i]->ba + dib_tab[i]->lnt - 1,
|
||||
dptr? dptr->name: "CPU");
|
||||
dptr? sim_dname (dptr): "CPU");
|
||||
}
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_lp20.c: PDP-10 LP20 line printer simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
lp20 line printer
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
29-Sep-02 RMS Added variable vector support
|
||||
Modified to use common Unibus routines
|
||||
New data structures
|
||||
@@ -201,7 +202,7 @@ REG lp20_reg[] = {
|
||||
{ FLDATA (ERR, lpcsa, CSR_V_ERR) },
|
||||
{ FLDATA (DONE, lpcsa, CSR_V_DONE) },
|
||||
{ FLDATA (IE, lpcsa, CSR_V_IE) },
|
||||
{ DRDATA (POS, lp20_unit.pos, 32), PV_LEFT },
|
||||
{ DRDATA (POS, lp20_unit.pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (TIME, lp20_unit.wait, 24), PV_LEFT },
|
||||
{ FLDATA (STOP_IOE, lp20_stopioe, 0) },
|
||||
{ BRDATA (TXRAM, txram, 8, 12, TX_SIZE) },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_mdfp.c: PDP-10 multiply/divide and floating point simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_pag.c: PDP-10 paging subsystem simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
|
||||
@@ -1,38 +0,0 @@
|
||||
/* pdp10_pt.c: PDP-10 paper tape reader/punch 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.
|
||||
|
||||
ptr paper tape reader
|
||||
ptp paper tape punch
|
||||
|
||||
12-Sep-02 RMS Consolidated source
|
||||
*/
|
||||
|
||||
#define VM_PDP10 1
|
||||
#define PT_RDX 8
|
||||
#define PT_DIS DEV_DIS
|
||||
#include "pdp10_defs.h"
|
||||
extern int32 int_req;
|
||||
extern int32 int_vec[32];
|
||||
#include "dec_pt.h"
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_rp.c - RH11/RP04/05/06/07 RM02/03/05/80 "Massbus" disk controller
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
rp RH/RP/RM moving head disks
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
21-Nov-02 RMS Fixed bug in bootstrap (reported by Michael Thompson)
|
||||
29-Sep-02 RMS Added variable vector support
|
||||
New data structures
|
||||
@@ -408,7 +409,7 @@ REG rp_reg[] = {
|
||||
{ DRDATA (STIME, rp_swait, 24), REG_NZ + PV_LEFT },
|
||||
{ DRDATA (RTIME, rp_rwait, 24), REG_NZ + PV_LEFT },
|
||||
{ URDATA (FNC, rp_unit[0].FUNC, 8, 5, 0, RP_NUMDR, REG_HRO) },
|
||||
{ URDATA (CAPAC, rp_unit[0].capac, 10, 31, 0,
|
||||
{ URDATA (CAPAC, rp_unit[0].capac, 10, T_ADDR_W, 0,
|
||||
RP_NUMDR, PV_LEFT | REG_HRO) },
|
||||
{ FLDATA (STOP_IOE, rp_stopioe, 0) },
|
||||
{ NULL } };
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_tim.c: PDP-10 tim subsystem simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
|
||||
@@ -25,6 +25,8 @@
|
||||
|
||||
tu RH11/TM03/TU45 magtape
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
28-Mar-03 RMS Added multiformat support
|
||||
28-Feb-03 RMS Revised for magtape library
|
||||
27-Jan-03 RMS Changed to dynamically allocate buffer
|
||||
21-Nov-02 RMS Fixed bug in bootstrap (reported by Michael Thompson)
|
||||
@@ -358,7 +360,7 @@ REG tu_reg[] = {
|
||||
{ FLDATA (STOP_IOE, tu_stopioe, 0) },
|
||||
{ DRDATA (TIME, tu_time, 24), PV_LEFT },
|
||||
{ URDATA (UST, tu_unit[0].USTAT, 8, 17, 0, TU_NUMDR, 0) },
|
||||
{ URDATA (POS, tu_unit[0].pos, 10, 32, 0,
|
||||
{ URDATA (POS, tu_unit[0].pos, 10, T_ADDR_W, 0,
|
||||
TU_NUMDR, PV_LEFT | REG_RO) },
|
||||
{ ORDATA (LOG, tu_log, 8), REG_HIDDEN },
|
||||
{ NULL } };
|
||||
@@ -366,6 +368,8 @@ REG tu_reg[] = {
|
||||
MTAB tu_mod[] = {
|
||||
{ MTUF_WLK, 0, "write enabled", "WRITEENABLED", NULL },
|
||||
{ MTUF_WLK, MTUF_WLK, "write locked", "LOCKED", NULL },
|
||||
{ MTAB_XTD|MTAB_VUN, 0, "FORMAT", "FORMAT",
|
||||
&sim_tape_set_fmt, &sim_tape_show_fmt, NULL },
|
||||
{ MTAB_XTD|MTAB_VDV, 0, "ADDRESS", NULL,
|
||||
NULL, &show_addr, NULL },
|
||||
{ MTAB_XTD|MTAB_VDV, 0, "VECTOR", NULL,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* pdp10_xtnd.c: PDP-10 extended instruction simulator
|
||||
|
||||
Copyright (c) 1993-2002, Robert M Supnik
|
||||
Copyright (c) 1993-2003, 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"),
|
||||
|
||||
Reference in New Issue
Block a user