mirror of
https://github.com/simh/simh.git
synced 2026-05-01 13:56:02 +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
@@ -26,6 +26,8 @@
|
||||
The author gratefully acknowledges the help of Max Burnet, Megan Gentry,
|
||||
and John Wilson in resolving questions about the PDP-11
|
||||
|
||||
19-May-03 RMS Revised for new conditional compilation
|
||||
05-Apr-03 RMS Fixed bug in MMR1 update (found by Tim Stark)
|
||||
28-Feb-03 RMS Added TM logging support
|
||||
19-Jan-03 RMS Changed mode definitions for Apple Dev Kit conflict
|
||||
11-Nov-02 RMS Changed log definitions to be VAX compatible
|
||||
@@ -53,6 +55,10 @@
|
||||
#ifndef _PDP11_DEFS_H
|
||||
#define _PDP11_DEFS_H 0
|
||||
|
||||
#ifndef VM_PDP11
|
||||
#define VM_PDP11 0
|
||||
#endif
|
||||
|
||||
#include "sim_defs.h" /* simulator defns */
|
||||
#include <setjmp.h>
|
||||
|
||||
@@ -316,6 +322,8 @@ typedef struct fpac fpac_t;
|
||||
#define MAP 1 /* mapped */
|
||||
#define NOMAP 0 /* not mapped */
|
||||
|
||||
#define DEV_RDX 8 /* default device radix */
|
||||
|
||||
/* Device information block */
|
||||
|
||||
#define VEC_DEVMAX 4 /* max device vec */
|
||||
@@ -542,7 +550,7 @@ typedef struct pdp_dib DIB;
|
||||
|
||||
/* CPU and FPU macros */
|
||||
|
||||
#define update_MM ((MMR0 & (MMR0_FREEZE + MMR0_MME)) == MMR0_MME)
|
||||
#define update_MM ((MMR0 & MMR0_FREEZE) == 0)
|
||||
#define setTRAP(name) trap_req = trap_req | (name)
|
||||
#define setCPUERR(name) CPUERR = CPUERR | (name)
|
||||
#define ABORT(val) longjmp (save_env, (val))
|
||||
@@ -570,11 +578,11 @@ typedef struct pdp_dib DIB;
|
||||
|
||||
/* Function prototypes */
|
||||
|
||||
t_bool Map_Addr (t_addr qa, t_addr *ma);
|
||||
int32 Map_ReadB (t_addr ba, int32 bc, uint8 *buf, t_bool map);
|
||||
int32 Map_ReadW (t_addr ba, int32 bc, uint16 *buf, t_bool map);
|
||||
int32 Map_WriteB (t_addr ba, int32 bc, uint8 *buf, t_bool map);
|
||||
int32 Map_WriteW (t_addr ba, int32 bc, uint16 *buf, t_bool map);
|
||||
t_bool Map_Addr (uint32 qa, uint32 *ma);
|
||||
int32 Map_ReadB (uint32 ba, int32 bc, uint8 *buf, t_bool map);
|
||||
int32 Map_ReadW (uint32 ba, int32 bc, uint16 *buf, t_bool map);
|
||||
int32 Map_WriteB (uint32 ba, int32 bc, uint8 *buf, t_bool map);
|
||||
int32 Map_WriteW (uint32 ba, int32 bc, uint16 *buf, t_bool map);
|
||||
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_addr_flt (UNIT *uptr, int32 val, char *cptr, void *desc);
|
||||
|
||||
Reference in New Issue
Block a user