mirror of
https://github.com/open-simh/simh.git
synced 2026-03-25 09:52:32 +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 @@
|
||||
/* id16_cpu.c: Interdata 16b CPU simulator
|
||||
|
||||
Copyright (c) 2000-2002, Robert M. Supnik
|
||||
Copyright (c) 2000-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"),
|
||||
@@ -1683,7 +1683,7 @@ return SCPE_OK;
|
||||
t_stat cpu_set_size (UNIT *uptr, int32 val, char *cptr, void *desc)
|
||||
{
|
||||
int32 mc = 0;
|
||||
t_addr i;
|
||||
uint32 i;
|
||||
|
||||
if ((val <= 0) || ((val & 0xFFF) != 0) ||
|
||||
(((uint32) val) > ((uptr->flags & UNIT_816E)? MAXMEMSIZE16E: MAXMEMSIZE16)))
|
||||
@@ -1700,7 +1700,7 @@ return SCPE_OK;
|
||||
|
||||
t_stat cpu_set_model (UNIT *uptr, int32 val, char *cptr, void *desc)
|
||||
{
|
||||
t_addr i;
|
||||
uint32 i;
|
||||
|
||||
if (!(val & UNIT_816E) && (MEMSIZE > MAXMEMSIZE16)) {
|
||||
MEMSIZE = MAXMEMSIZE16;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id16_dboot.c: Interdata 16b simulator disk bootstrap
|
||||
|
||||
Copyright (c) 2000-2002, Robert M. Supnik
|
||||
Copyright (c) 2000-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"),
|
||||
|
||||
@@ -1993,7 +1993,7 @@ return SCPE_OK;
|
||||
t_stat cpu_set_size (UNIT *uptr, int32 val, char *cptr, void *desc)
|
||||
{
|
||||
uint32 mc = 0;
|
||||
t_addr i;
|
||||
uint32 i;
|
||||
|
||||
if ((val <= 0) || (val > MAXMEMSIZE32) || ((val & 0xFFFF) != 0))
|
||||
return SCPE_ARG;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id_defs.h: Interdata 16b/32b simulator definitions
|
||||
|
||||
Copyright (c) 2000-2002, Robert M. Supnik
|
||||
Copyright (c) 2000-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"),
|
||||
@@ -26,6 +26,8 @@
|
||||
The author gratefully acknowledges the help of Carl Friend and Al Kossow,
|
||||
who provided key documents about the Interdata product line.
|
||||
|
||||
21-Jun-03 RMS Changed subroutine argument for ARM compiler conflict
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
28-Feb-03 RMS Changed magtape device default to 0x85
|
||||
*/
|
||||
|
||||
@@ -52,7 +54,7 @@
|
||||
#define PAMASK32 (MAXMEMSIZE32 - 1)
|
||||
|
||||
#define MEMSIZE (cpu_unit.capac) /* act memory size */
|
||||
#define MEM_ADDR_OK(x) (((t_addr) (x)) < MEMSIZE)
|
||||
#define MEM_ADDR_OK(x) (((uint32) (x)) < MEMSIZE)
|
||||
|
||||
/* Single precision floating point registers */
|
||||
|
||||
@@ -171,8 +173,8 @@ typedef struct dpr dpr_t;
|
||||
|
||||
struct BlockIO {
|
||||
uint32 dfl; /* devno, flags */
|
||||
t_addr cur; /* current addr */
|
||||
t_addr end; /* end addr */
|
||||
uint32 cur; /* current addr */
|
||||
uint32 end; /* end addr */
|
||||
};
|
||||
|
||||
#define BL_RD 0x8000 /* block read */
|
||||
@@ -466,7 +468,7 @@ typedef struct interdib DIB;
|
||||
|
||||
/* Function prototypes */
|
||||
|
||||
int32 int_chg (uint32 irq, int32 dat, int32 arm);
|
||||
int32 int_chg (uint32 irq, int32 dat, int32 armdis);
|
||||
int32 io_2b (int32 val, int32 pos, int32 old);
|
||||
uint32 IOReadB (uint32 loc);
|
||||
void IOWriteB (uint32 loc, uint32 val);
|
||||
|
||||
@@ -46,8 +46,8 @@ sim/ sim_defs.h
|
||||
sim_tmxr.c
|
||||
|
||||
sim/interdata/ id_defs.h
|
||||
id16_cpu.c [or id32_cpu.c]
|
||||
id16_dboot.c [or id32_dboot.c]
|
||||
id16_cpu.c [id32_cpu.c]
|
||||
id16_dboot.c [id32_dboot.c]
|
||||
id_dp.c
|
||||
id_fd.c
|
||||
id_fp.c
|
||||
@@ -60,7 +60,7 @@ sim/interdata/ id_defs.h
|
||||
id_tt.c
|
||||
id_ttp.c
|
||||
id_uvc.c
|
||||
id16_sys.c [or id32_sys.c]
|
||||
id16_sys.c [id32_sys.c]
|
||||
|
||||
2. Interdata Features
|
||||
|
||||
@@ -235,9 +235,6 @@ control registers for the interrupt system.
|
||||
R0..R15 32 active general register set
|
||||
GREG[32] 32 general register sets, 16 x 2
|
||||
FR0..FR14 32 single precision floating point registers
|
||||
if double precision floating point; for
|
||||
microcoded floating point, floating point
|
||||
registers are kept in memory locations 00 - 1F
|
||||
D0H..D14H 32 double precision floating point registers,
|
||||
high order
|
||||
D0L..D14L 32 double precision floating point registers,
|
||||
@@ -521,8 +518,8 @@ The programmable interval clock (PIC) implements these registers:
|
||||
IENB 1 clock interrupt enable
|
||||
IARM 1 clock interrupt armed
|
||||
|
||||
If the interval requested is longer than 1 msec, and a multiple of
|
||||
1 msec, the programmable clock auto-calibrates; if not, it simply
|
||||
If the interval requested is an exact multiple of 1 msec, the
|
||||
programmable clock auto-calibrates; if not, it simply counts
|
||||
counts instructions.
|
||||
|
||||
2.4.7 Floppy Disk Controller (FD)
|
||||
@@ -587,7 +584,7 @@ or 8B. In UC mode, lower case input and output characters are converted
|
||||
automatically to upper case. In 7B mode, input and output characters are
|
||||
masked to 7 bits. In 8B mode, characters are not modified. The default
|
||||
mode is UC. Each line (each unit of PASL) can also be set for modem
|
||||
control with the command SET PASLn DATASET. The defaults are UC mode
|
||||
control with the command SET PASLn DATASET. The defaults are 7b mode
|
||||
and DATASET disabled.
|
||||
|
||||
Once PAS is attached and the simulator is running, the terminals listen
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
dp M46-421 2.5MB/10MB cartridge disk
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
16-Feb-03 RMS Fixed read to test transfer ok before selch operation
|
||||
*/
|
||||
|
||||
@@ -151,7 +152,7 @@ uint32 dpd_arm[DP_NUMDR] = { 0 }; /* drives armed */
|
||||
int32 dp_stime = 100; /* seek latency */
|
||||
int32 dp_rtime = 100; /* rotate latency */
|
||||
int32 dp_wtime = 1; /* word time */
|
||||
int32 dp_log = 0; /* debug log */
|
||||
uint32 dp_log = 0; /* debug log */
|
||||
uint8 dp_tplte[(2 * DP_NUMDR) + 2]; /* fix/rmv + ctrl + end */
|
||||
|
||||
DEVICE dp_dev;
|
||||
@@ -210,7 +211,7 @@ REG dp_reg[] = {
|
||||
DP_NUMDR, REG_RO) },
|
||||
{ URDATA (UST, dp_unit[0].STD, 16, 8, 0,
|
||||
DP_NUMDR, REG_RO) },
|
||||
{ URDATA (CAPAC, dp_unit[0].capac, 10, 31, 0,
|
||||
{ URDATA (CAPAC, dp_unit[0].capac, 10, T_ADDR_W, 0,
|
||||
DP_NUMDR, PV_LEFT | REG_HRO) },
|
||||
{ FLDATA (LOG, dp_log, 0), REG_HIDDEN },
|
||||
{ HRDATA (DEVNO, dp_dib.dno, 8), REG_HRO },
|
||||
@@ -513,9 +514,10 @@ uint32 i, p;
|
||||
t_stat r;
|
||||
|
||||
uptr->capac = drv_tab[GET_DTYPE (uptr->flags)].size;
|
||||
r = attach_unit (uptr, cptr);
|
||||
r = attach_unit (uptr, cptr); /* attach unit */
|
||||
if (r != SCPE_OK) return r; /* error? */
|
||||
uptr->CYL = 0;
|
||||
if ((r != SCPE_OK) || ((uptr->flags & UNIT_AUTO) == 0)) return r;
|
||||
if ((uptr->flags & UNIT_AUTO) == 0) return SCPE_OK; /* autosize? */
|
||||
if (fseek (uptr->fileref, 0, SEEK_END)) return SCPE_OK;
|
||||
if ((p = ftell (uptr->fileref)) == 0) return SCPE_OK;
|
||||
for (i = 0; drv_tab[i].surf != 0; i++) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id_fd.c: Interdata floppy disk simulator
|
||||
|
||||
Copyright (c) 2001-2002, Robert M Supnik
|
||||
Copyright (c) 2001-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"),
|
||||
@@ -275,8 +275,7 @@ return 0;
|
||||
|
||||
t_stat fd_svc (UNIT *uptr)
|
||||
{
|
||||
uint32 i, u, tk, sc, crc, fnc;
|
||||
t_addr da;
|
||||
uint32 i, u, tk, sc, crc, fnc, da;
|
||||
|
||||
u = uptr - fd_dev.units; /* get unit number */
|
||||
fnc = GET_FNC (uptr->FNC); /* get function */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id_fp.c: Interdata floating point instructions
|
||||
|
||||
Copyright (c) 2000-2002, Robert M. Supnik
|
||||
Copyright (c) 2000-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 @@
|
||||
|
||||
idc MSM/IDC disk controller
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
16-Feb-03 RMS Fixed read to test transfer ok before selch operation
|
||||
|
||||
Note: define flag ID_IDC to enable the extra functions of the intelligent
|
||||
@@ -273,7 +274,7 @@ REG idc_reg[] = {
|
||||
ID_NUMDR, REG_HRO) },
|
||||
{ URDATA (UST, idc_unit[0].STD, 16, 8, 0,
|
||||
ID_NUMDR, REG_RO) },
|
||||
{ URDATA (CAPAC, idc_unit[0].capac, 10, 31, 0,
|
||||
{ URDATA (CAPAC, idc_unit[0].capac, 10, T_ADDR_W, 0,
|
||||
ID_NUMDR, PV_LEFT | REG_HRO) },
|
||||
{ HRDATA (DEVNO, idc_dib.dno, 8), REG_HRO },
|
||||
{ HRDATA (SELCH, idc_dib.sch, 2), REG_HRO },
|
||||
@@ -668,9 +669,10 @@ uint32 i, p;
|
||||
t_stat r;
|
||||
|
||||
uptr->capac = drv_tab[GET_DTYPE (uptr->flags)].size;
|
||||
r = attach_unit (uptr, cptr);
|
||||
r = attach_unit (uptr, cptr); /* attach unit */
|
||||
if (r != SCPE_OK) return r; /* error? */
|
||||
uptr->CYL = 0;
|
||||
if ((r != SCPE_OK) || ((uptr->flags & UNIT_AUTO) == 0)) return r;
|
||||
if ((uptr->flags & UNIT_AUTO) == 0) return SCPE_OK; /* autosize? */
|
||||
if (fseek (uptr->fileref, 0, SEEK_END)) return SCPE_OK;
|
||||
if ((p = ftell (uptr->fileref)) == 0) return SCPE_OK;
|
||||
for (i = 0; drv_tab[i].surf != 0; i++) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id_io.c: Interdata CPU-independent I/O routines
|
||||
|
||||
Copyright (c) 2001-2002, Robert M. Supnik
|
||||
Copyright (c) 2001-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,8 @@
|
||||
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.
|
||||
|
||||
21-Jun-03 RMS Changed subroutine argument for ARM compiler conflict
|
||||
|
||||
Interdata I/O devices are defined by a device information block:
|
||||
|
||||
dno base device number
|
||||
@@ -391,7 +393,7 @@ return 0;
|
||||
|
||||
/* Update device interrupt status */
|
||||
|
||||
int32 int_chg (uint32 irq, int32 dat, int32 arm)
|
||||
int32 int_chg (uint32 irq, int32 dat, int32 armdis)
|
||||
{
|
||||
int32 t = CMD_GETINT (dat); /* get int ctrl */
|
||||
|
||||
@@ -405,7 +407,7 @@ if (t == CMD_IDSA) { /* disarm? */
|
||||
CLR_ENB (irq);
|
||||
CLR_INT (irq);
|
||||
return 0; }
|
||||
return arm;
|
||||
return armdis;
|
||||
}
|
||||
|
||||
/* Process a 2b field and return unchanged, set, clear, complement */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id_lp.c: Interdata line printer
|
||||
|
||||
Copyright (c) 2001-2002, Robert M. Supnik
|
||||
Copyright (c) 2001-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"),
|
||||
@@ -24,6 +24,8 @@
|
||||
in this Software without prior written authorization from Robert M Supnik.
|
||||
|
||||
lpt M46-206 line printer
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
*/
|
||||
|
||||
#include "id_defs.h"
|
||||
@@ -94,7 +96,7 @@ REG lpt_reg[] = {
|
||||
{ FLDATA (IREQ, int_req[l_LPT], i_LPT) },
|
||||
{ FLDATA (IENB, int_enb[l_LPT], i_LPT) },
|
||||
{ FLDATA (IARM, lpt_arm, 0) },
|
||||
{ DRDATA (POS, lpt_unit.pos, 32), PV_LEFT },
|
||||
{ DRDATA (POS, lpt_unit.pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (CTIME, lpt_ctime, 24), PV_LEFT },
|
||||
{ DRDATA (STIME, lpt_stime, 24), PV_LEFT },
|
||||
{ FLDATA (STOP_IOE, lpt_stopioe, 0) },
|
||||
|
||||
@@ -25,6 +25,8 @@
|
||||
|
||||
mt M46-494 dual density 9-track magtape controller
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
28-Mar-03 RMS Added multiformat support
|
||||
28-Feb-03 RMS Revised for magtape library
|
||||
20-Feb-03 RMS Fixed read to stop selch on error
|
||||
|
||||
@@ -135,7 +137,7 @@ REG mt_reg[] = {
|
||||
{ DRDATA (RTIME, mt_rtime, 24), PV_LEFT + REG_NZ },
|
||||
{ URDATA (UST, mt_unit[0].UST, 16, 8, 0, MT_NUMDR, 0) },
|
||||
{ URDATA (CMD, mt_unit[0].UCMD, 16, 8, 0, MT_NUMDR, 0) },
|
||||
{ URDATA (POS, mt_unit[0].pos, 10, 32, 0,
|
||||
{ URDATA (POS, mt_unit[0].pos, 10, T_ADDR_W, 0,
|
||||
MT_NUMDR, PV_LEFT | REG_RO) },
|
||||
{ HRDATA (DEVNO, mt_dib.dno, 8), REG_HRO },
|
||||
{ HRDATA (SELCH, mt_dib.sch, 1), REG_HRO },
|
||||
@@ -144,6 +146,8 @@ REG mt_reg[] = {
|
||||
MTAB mt_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, "DEVNO", "DEVNO",
|
||||
&set_dev, &show_dev, NULL },
|
||||
{ MTAB_XTD|MTAB_VDV, 0, "SELCH", "SELCH",
|
||||
|
||||
@@ -25,6 +25,8 @@
|
||||
|
||||
pas Programmable asynchronous line adapter(s)
|
||||
|
||||
09-May-03 RMS Added network device flag
|
||||
|
||||
This module implements up to 32 individual serial interfaces, representing
|
||||
either individual PASLA modules or combinations of the 2-line and 8-line
|
||||
multiplexors, which are functionally very similar. These interfaces are mapped
|
||||
@@ -160,7 +162,7 @@ DEVICE pas_dev = {
|
||||
1, 10, 31, 1, 16, 8,
|
||||
&tmxr_ex, &tmxr_dep, &pas_reset,
|
||||
NULL, &pas_attach, &pas_detach,
|
||||
&pas_dib, DEV_DISABLE };
|
||||
&pas_dib, DEV_NET | DEV_DISABLE };
|
||||
|
||||
/* PASL data structures
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id_pt.c: Interdata paper tape reader
|
||||
|
||||
Copyright (c) 2000-2001, Robert M. Supnik
|
||||
Copyright (c) 2000-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"),
|
||||
@@ -24,6 +24,9 @@
|
||||
in this Software without prior written authorization from Robert M Supnik.
|
||||
|
||||
pt paper tape reader and punch
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
10-Apr-03 RMS Fixed type problem in ptr service (from Mark Pizzolato)
|
||||
*/
|
||||
|
||||
#include "id_defs.h"
|
||||
@@ -76,11 +79,11 @@ UNIT pt_unit[] = {
|
||||
REG pt_reg[] = {
|
||||
{ HRDATA (STA, pt_sta, 8) },
|
||||
{ HRDATA (RBUF, pt_unit[PTR].buf, 8) },
|
||||
{ DRDATA (RPOS, pt_unit[PTR].pos, 32), PV_LEFT },
|
||||
{ DRDATA (RPOS, pt_unit[PTR].pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (RTIME, pt_unit[PTR].wait, 24), PV_LEFT },
|
||||
{ FLDATA (RSTOP_IOE, ptr_stopioe, 0) },
|
||||
{ HRDATA (PBUF, pt_unit[PTP].buf, 8) },
|
||||
{ DRDATA (PPOS, pt_unit[PTP].pos, 32), PV_LEFT },
|
||||
{ DRDATA (PPOS, pt_unit[PTP].pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (PTIME, pt_unit[PTP].wait, 24), PV_LEFT },
|
||||
{ FLDATA (PSTOP_IOE, ptp_stopioe, 0) },
|
||||
{ FLDATA (IREQ, int_req[l_PT], i_PT) },
|
||||
@@ -164,7 +167,7 @@ return 0;
|
||||
|
||||
t_stat ptr_svc (UNIT *uptr)
|
||||
{
|
||||
uint32 temp;
|
||||
int32 temp;
|
||||
|
||||
if ((uptr->flags & UNIT_ATT) == 0) /* attached? */
|
||||
return IORETURN (ptr_stopioe, SCPE_UNATT);
|
||||
@@ -324,8 +327,7 @@ static uint8 load_rom[] = {
|
||||
|
||||
t_stat pt_dump (FILE *of, char *cptr, char *fnam)
|
||||
{
|
||||
t_addr i, lo, hi;
|
||||
uint32 cs;
|
||||
uint32 i, lo, hi, cs;
|
||||
char *tptr;
|
||||
extern DEVICE cpu_dev;
|
||||
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
tt console
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
11-Jan-03 RMS Added TTP support
|
||||
22-Dec-02 RMS Added break support
|
||||
*/
|
||||
@@ -83,10 +84,10 @@ UNIT tt_unit[] = {
|
||||
REG tt_reg[] = {
|
||||
{ HRDATA (STA, tt_sta, 8) },
|
||||
{ HRDATA (KBUF, tt_unit[TTI].buf, 8) },
|
||||
{ DRDATA (KPOS, tt_unit[TTI].pos, 32), PV_LEFT },
|
||||
{ DRDATA (KPOS, tt_unit[TTI].pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (KTIME, tt_unit[TTI].wait, 24), REG_NZ + PV_LEFT },
|
||||
{ HRDATA (TBUF, tt_unit[TTO].buf, 8) },
|
||||
{ DRDATA (TPOS, tt_unit[TTO].pos, 32), PV_LEFT },
|
||||
{ DRDATA (TPOS, tt_unit[TTO].pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (TTIME, tt_unit[TTO].wait, 24), REG_NZ + PV_LEFT },
|
||||
{ FLDATA (IREQ, int_req[l_TT], i_TT) },
|
||||
{ FLDATA (IENB, int_enb[l_TT], i_TT) },
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
in this Software without prior written authorization from Robert M Supnik.
|
||||
|
||||
ttp console (on PAS)
|
||||
|
||||
25-Apr-03 RMS Revised for extended file support
|
||||
*/
|
||||
|
||||
#include "id_defs.h"
|
||||
@@ -83,14 +85,14 @@ UNIT ttp_unit[] = {
|
||||
REG ttp_reg[] = {
|
||||
{ HRDATA (CMD, ttp_cmd, 16) },
|
||||
{ HRDATA (KBUF, ttp_unit[TTI].buf, 8) },
|
||||
{ DRDATA (KPOS, ttp_unit[TTI].pos, 32), PV_LEFT },
|
||||
{ DRDATA (KPOS, ttp_unit[TTI].pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (KTIME, ttp_unit[TTI].wait, 24), REG_NZ + PV_LEFT },
|
||||
{ FLDATA (KIREQ, int_req[l_TTP], i_TTP) },
|
||||
{ FLDATA (KIENB, int_enb[l_TTP], i_TTP) },
|
||||
{ FLDATA (KARM, ttp_karm, 0) },
|
||||
{ FLDATA (CHP, ttp_kchp, 0) },
|
||||
{ HRDATA (TBUF, ttp_unit[TTO].buf, 8) },
|
||||
{ DRDATA (TPOS, ttp_unit[TTO].pos, 32), PV_LEFT },
|
||||
{ DRDATA (TPOS, ttp_unit[TTO].pos, T_ADDR_W), PV_LEFT },
|
||||
{ DRDATA (TTIME, ttp_unit[TTO].wait, 24), REG_NZ + PV_LEFT },
|
||||
{ FLDATA (TIREQ, int_req[l_TTP], i_TTP + 1) },
|
||||
{ FLDATA (TIENB, int_enb[l_TTP], i_TTP + 1) },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* id_uvc.c: Interdata universal clock
|
||||
|
||||
Copyright (c) 2001-2002, Robert M. Supnik
|
||||
Copyright (c) 2001-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