mirror of
https://github.com/simh/simh.git
synced 2026-04-24 19:33:40 +00:00
Notes For V3.0-2
RESTRICTION: The FP15 and XVM features of the PDP-15 are only partially debugged. Do NOT enable these features for normal operations. 1. New Features in 3.0-2 1.1 PDP-1 - The LOAD command takes an optional argument specifying the memory field to be loaded. - The PTR BOOT command takes its starting memory field from the TA (address switch) register. 2. Bugs Fixed in 3.0-2 2.1 SCP and libraries - Fixed end of file problem in dep, idep. - Fixed handling of trailing spaces in dep, idep. 2.2 PDP-1 - Fixed system hang if continue after PTR error. - Fixed PTR to start/stop on successive rpa instructions. 2.3 PDP 18b family - Fixed priorities in PDP-15 API (differs from PDP-9). - Fixed sign handling in PDP-15 EAE unsigned mul/div (differs from PDP-9). - Fixed bug in CAF, clears API subsystem. 2.4 1401 - Fixed tape read end-of-record handling based on real 1401. - Added diagnostic read (space forward). 2.5 1620 - Fixed bug in immediate index add (found by Michael Short). 3. New Features in 3.0 vs prior releases 3.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 3.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. 3.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). 3.4 PDP-1 - Added block loader format support to LOAD. - Changed BOOT PTR to allow loading of all of the first bank of memory. 3.5 PDP-18b Family - Added PDP-4 EAE support. - Added PDP-15 FP15 support. - Added PDP-15 XVM support. - Added PDP-15 "re-entrancy ECO". - Added PDP-7, PDP-9, PDP-15 hardware RIM loader support in BOOT PTR. 4. Bugs Fixed in 3.0 vs prior releases 4.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). - Fixed bug in user disk size (found by Chaskiel M Grundman). 4.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. - Revised fetch to model hardware more closely. 4.3 Nova - Fixed DSK variable size interaction with restore. - Fixed bug in DSK set size routine. 4.4 PDP-1 - Fixed DT variable size interaction with restore. - Updated CPU, line printer, standard devices to detect indefinite I/O wait. - Fixed incorrect logical, missing activate, break in drum simulator. - Fixed bugs in instruction decoding, overprinting for line printer. 4.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. - Fixed bug in user disk size (found by Chaskiel M Grundman). 4.6 PDP-18B - Fixed DT, RF variable size interaction with restore. - Fixed MT bug in MTTR. - Fixed bug in PDP-4 line printer overprinting. - Fixed bug in PDP-15 memory protect/skip interaction. - Fixed bug in RF set size routine. - Increased PTP TIME for PDP-15 operating systems. 4.7 PDP-8 - Fixed DT, DF, RF, RX variable size interaction with restore. - Fixed MT bug in SKTR. - Fixed bug in DF, RF set size routine. 4.8 HP2100 - Fixed bug in DP (13210A controller only), DQ read status. - Fixed bug in DP, DQ seek complete. - Fixed DR drum sizes. - Fixed DR variable capacity interaction with SAVE/RESTORE. 4.9 GRI - Fixed bug in SC queue pointer management. 4.10 PDP-10 - Fixed bug in RP read header. 4.11 Ibm1130 - Fixed bugs found by APL 1130. 4.12 Altairz80 - Fixed bug in real-time clock on Windows host.
This commit is contained in:
committed by
Mark Pizzolato
parent
f9564b81b9
commit
b2101ecdd4
30
simh_doc.txt
30
simh_doc.txt
@@ -1,7 +1,7 @@
|
||||
To: Users
|
||||
From: Bob Supnik
|
||||
Subj: Simulator Usage, V3.1
|
||||
Date: 15-Jul-2003
|
||||
Subj: Simulator Usage, V3.0-2
|
||||
Date: 15-Sep-2003
|
||||
|
||||
COPYRIGHT NOTICE
|
||||
|
||||
@@ -66,8 +66,8 @@ The simulators recognize or require a few compile-time #defines:
|
||||
of the compilation command line (i.e., PDP4 for the PDP-4, PDP7
|
||||
for the PDP-7, PDP9 for the PDP-9, PDP15 for the PDP-15).
|
||||
|
||||
- The PDP-10 and VAX simulators use 64b integer variables, requiring
|
||||
that USE_INT64 be defined as part of the compilation command line.
|
||||
- The PDP-10 simulator uses 64b integer variables, requiring that
|
||||
USE_INT64 be defined as part of the compilation command line.
|
||||
Since 64b integer declarations vary, sim_defs.h has conditional
|
||||
declarations for Windows (_int64) and Digital UNIX (long). The
|
||||
default is GNU C (long long). If your compiler uses a different
|
||||
@@ -83,6 +83,11 @@ The simulators recognize or require a few compile-time #defines:
|
||||
of the compilation command line. At present, Ethernet support is
|
||||
available only on Windows, Linux, NetBSD, and OpenBSD.
|
||||
|
||||
- The PDP-11 and VAX simulators optionally support disks and serial
|
||||
devices files greater than 2GB. To include large device support,
|
||||
both USE_INT64 and USE_ADDR64 must be defined as part of the
|
||||
compilation command line.
|
||||
|
||||
To start the simulator, simply type its name. (On version of VMS
|
||||
prior to 6.2, the simulators must then be defined as foreign commands
|
||||
in order to be be started by name.) The simulator recognizes one
|
||||
@@ -271,7 +276,7 @@ loader format:
|
||||
|
||||
sim> load <filename> {implementation options}(cr)
|
||||
|
||||
The number of formats supported is implementation specific. Options
|
||||
The types of formats supported are implementation specific. Options
|
||||
(such as load within range) are also implementation specific.
|
||||
|
||||
The DUMP command (abbreviation DU) dumps memory in binary paper-
|
||||
@@ -279,7 +284,7 @@ tape loader format:
|
||||
|
||||
sim> dump <filename> {implementation options}(cr)
|
||||
|
||||
The number of formats supported is implementation specific. Options
|
||||
The types of formats supported are implementation specific. Options
|
||||
(such as dump within range) are also implementation specific.
|
||||
|
||||
3.2 Saving and Restoring State
|
||||
@@ -422,8 +427,11 @@ by commas:
|
||||
|
||||
register the specified register
|
||||
register[sub1-sub2] the specified register array locations,
|
||||
start at location sub1 up to and including
|
||||
location sub2
|
||||
starting at location sub1 up to and
|
||||
including location sub2
|
||||
register[sub1/length] the specified register array locations,
|
||||
starting at location sub1 up to but
|
||||
not including sub1+length
|
||||
register[ALL] all locations in the specified register
|
||||
array
|
||||
register1-register2 all the registers starting at register1
|
||||
@@ -599,7 +607,7 @@ The SHOW <unit> command shows the status of the named simulated unit.
|
||||
SHOW <unit> <parameter> shows the value of the named parameter, if
|
||||
it can display a value.
|
||||
|
||||
3.10 Altering the Simulated Configuration
|
||||
3.10 Altering The Simulated Configuration
|
||||
|
||||
In most simulators, the SET <device> DISABLED command removes the
|
||||
specified device from the configuration. A DISABLED device is
|
||||
@@ -783,7 +791,7 @@ The debug status of each simulated CPU and device is as follows:
|
||||
system PDP-8 PDP-11 Nova PDP-1 18b PDP
|
||||
device
|
||||
CPU y y y y y
|
||||
FPU - y - - -
|
||||
FPU - y - - h
|
||||
EIS/CIS - h - - -
|
||||
console y y y y y
|
||||
paper tape y y y h y
|
||||
@@ -849,6 +857,8 @@ Rev 3.0, May, 03
|
||||
Added logical name support
|
||||
Added multiple tape format support
|
||||
Added 64b address support
|
||||
Added PDP-4 EAE support
|
||||
Added PDP-15 FP15 and XVM support
|
||||
|
||||
Rev 2.10, Nov, 02
|
||||
Added Telnet console capability, removed VT emulation
|
||||
|
||||
Reference in New Issue
Block a user