1. New Features 1.1 Directory and documentation - Only common files (SCP and libraries) are in the top level directory. Individual simulator files are in their individual directories. - simh_doc.txt has been split up. simh_doc.txt now documents only SCP. The individual simulators are documented in separate text files in their own directories. - mingw_build.bat is a batch file for the MINGW/gcc environment that will build all the simulators, assuming the root directory structure is at c:\sim. - Makefile is a UNIX make file for the gcc environment that will build all the simulators, assuming the root directory is at c:\sim. 1.2 SCP - DO <file name> executes the SCP commands in the specified file. - Replicated registers in unit structures can now be declared as arrays for examine, modify, save, and restore. Most replicated unit registers (for example, mag tape position registers) have been changed to arrays. - The ADD/REMOVE commands have been replaced by SET unit ONLINE and SET unit OFFLINE, respectively. - Register names that are unique within an entire simulator do not have to be prefaced with the device name. - The ATTACH command can attach files read only, either under user option (-r), or because the attached file is ready only. - The SET/SHOW capabilities have been extended. New forms include: SET <dev> param{=value}{ param ...} SET <unit> param{=value}{ param ...} SHOW <dev> {param param ...} SHOW <unit> {param param ...} - Multiple breakpoints have been implemented. Breakpoints are set/cleared/displayed by: BREAK addr_list{[count]} NOBREAK addr_list SHOW BREAK addr_list 1.3 PDP-11 simulator - Unibus map implemented, with 22b RP controller (URH70) or 18b RP controller (URH11) (in debug). - All DMA peripherals rewritten to use map. - Many peripherals modified for source sharing with VAX. - RQDX3 implemented. - Bugs fixed in RK11 and RL11 write check. 1.4 PDP-10 simulator - ITS 1-proceed implemented. - Bugs fixed in ITS PC sampling and LPMR 1.5 18b PDP simulator - Interrupts split out to multiple levels to allow easier expansion. 1.5 IBM System 3 Simulator - Written by Charles (Dutch) Owen. 1.6 VAX Simulator (in debug) - Simulates MicroVAX 3800 (KA655) with 16MB-64MB memory, RQDX3, RLV12, TSV11, DZV11, LPV11, PCV11. - CDROM capability has been added to the RQDX3, to allow testing with VMS hobbyist images. 1.7 SDS 940 Simulator (not tested) - Simulates SDS 940, 16K-64K memory, fixed and moving head disk, magtape, line printer, console. 1.8 Altair Z80 - Revised from Charles (Dutch) Owen's original by Peter Schorn. - MITS 8080 with full Z80 simulation. - 4K and 8K BASIC packages, Prolog package. 1.9 Interdata The I4 simulator has been withdrawn for major rework. Look for a complete 16b/32b Interdata simulator sometime next year. 2. Release Notes 2.1 SCP SCP now allows replicated registers in unit structures to be modelled as arrays. All replicated register declarations have been replaced by register array declarations. As a result, save files from prior revisions will generate errors after restoring main memory. 2.2 PDP-11 The Unibus map code is in debug. The map was implemented primarily to allow source sharing with the VAX, which requires a DMA map. DMA devices work correctly with the Unibus map disabled. The RQDX3 simulator has run a complete RSTS/E SYSGEN, with multiple drives, and booted the completed system from scratch. 2.3 VAX The VAX simulator will run the boot code up to the >>> prompt. It can successfully process a SHOW DEVICE command. It runs the HCORE instruction diagnostic. It can boot the hobbyist CD through SYSBOOT and through the date/time dialog and restore the hobbyist CD, using standalone backup. On the boot of the restored disk, it gets to the date/time dialog, and then crashes. 2.4 SDS 940 The SDS 940 is untested, awaiting real code. 2.5 GCC Optimization At -O2 and above, GCC does not correctly compile the simulators which use setjmp-longjmp (PDP-11, PDP-10, VAX). A working hypothesis is that optimized state maintained in registers is being used in the setjmp processing routine. On the PDP-11 and PDP-10, all of this state has been either made global, or volatile, to encourage GCC to keep the state up to date in memory. The VAX is still vulnerable. 3. Work list 3.1 SCP - Better ENABLE/DISABLE. 3.2 PDP-11 RQDX3 Software mapped mode, RCT read simulation, VMS debug.
409 lines
11 KiB
Text
409 lines
11 KiB
Text
To: Users
|
|
From: Bob Supnik
|
|
Subj: PDP-1 Simulator Usage
|
|
Date: 1-Dec-01
|
|
|
|
COPYRIGHT NOTICE
|
|
|
|
The following copyright notice applies to both the SIMH source and binary:
|
|
|
|
Original code published in 1993-2001, written by Robert M Supnik
|
|
Copyright (c) 1993-2001, 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.
|
|
|
|
This memorandum documents the PDP-1 simulator.
|
|
|
|
|
|
1. Simulator Files
|
|
|
|
sim/ sim_defs.h
|
|
scp.c
|
|
scp_tty.c
|
|
sim_rev.c
|
|
|
|
sim/pdp1/ pdp1_defs.h
|
|
pdp1_cpu.c
|
|
pdp1_lp.c
|
|
pdp1_stddev.c
|
|
pdp1_sys.c
|
|
|
|
2. PDP-1 Features
|
|
|
|
The PDP-1 is configured as follows:
|
|
|
|
device simulates
|
|
name(s)
|
|
|
|
CPU PDP-1 CPU with up to 64KW of memory
|
|
PTR,PTP integral paper tape reader/punch
|
|
TTI,TTO Flexowriter typewriter input/output
|
|
LPT Type 62 line printer
|
|
|
|
The PDP-1 simulator implements the following unique stop conditions:
|
|
|
|
- an unimplemented instruction is decoded, and register
|
|
STOP_INST is set
|
|
- more than INDMAX indirect addresses are detected during
|
|
memory reference address decoding
|
|
- more than XCTMAX nested executes are detected during
|
|
instruction execution
|
|
- wait state entered, and no I/O operations outstanding
|
|
(ie, no interrupt can ever occur)
|
|
|
|
The PDP-1 loader supports RIM format tapes. The DUMP command is not
|
|
implemented.
|
|
|
|
2.1 CPU
|
|
|
|
The only CPU options are the presence of hardware multiply/divide and the
|
|
size of main memory.
|
|
|
|
SET CPU MDV enable multiply/divide
|
|
SET CPU NOMDV disable multiply/divide
|
|
SET CPU 4K set memory size = 4K
|
|
SET CPU 8K set memory size = 8K
|
|
SET CPU 12K set memory size = 12K
|
|
SET CPU 16K set memory size = 16K
|
|
SET CPU 20K set memory size = 20K
|
|
SET CPU 24K set memory size = 24K
|
|
SET CPU 28K set memory size = 28K
|
|
SET CPU 32K set memory size = 32K
|
|
SET CPU 48K set memory size = 48K
|
|
SET CPU 64K set memory size = 64K
|
|
|
|
If memory size is being reduced, and the memory being truncated contains
|
|
non-zero data, the simulator asks for confirmation. Data in the truncated
|
|
portion of memory is lost. Initial memory size is 64K.
|
|
|
|
CPU registers include the visible state of the processor as well as the
|
|
control registers for the interrupt system.
|
|
|
|
name size comments
|
|
|
|
PC 16 program counter
|
|
AC 18 accumulator
|
|
IO 18 IO register
|
|
OV 1 overflow flag
|
|
PF 6 program flags<1:6>
|
|
SS 6 sense switches<1:6>
|
|
TW 18 test word (front panel switches)
|
|
EXTM 1 extend mode
|
|
IOSTA 18 IO status register
|
|
SBON 1 sequence break enable
|
|
SBRQ 1 sequence break request
|
|
SBIP 1 sequence break in progress
|
|
IOH 1 I/O halt in progress
|
|
IOC 1 I/O continue
|
|
OLDPC 16 PC prior to last transfer
|
|
STOP_INST 1 stop on undefined instruction
|
|
SBS_INIT 1 initial state of sequence break enable
|
|
EXTM_INIT 1 initial state of extend mode
|
|
WRU 8 interrupt character
|
|
|
|
2.2 Programmed I/O Devices
|
|
|
|
2.2.1 Paper Tape Reader (PTR)
|
|
|
|
The paper tape reader (PTR) reads data from or a disk file. The POS
|
|
register specifies the number of the next data item to be read. Thus,
|
|
by changing POS, the user can backspace or advance the reader.
|
|
|
|
The paper tape reader supports the BOOT command. BOOT PTR copies the
|
|
RIM loader into memory and starts it running.
|
|
|
|
The paper tape reader implements these registers:
|
|
|
|
name size comments
|
|
|
|
BUF 8 last data item processed
|
|
DONE 1 device done flag
|
|
RPLS 1 return restart pulse flag
|
|
POS 31 position in the input file
|
|
TIME 24 time from I/O initiation to interrupt
|
|
STOP_IOE 1 stop on I/O error
|
|
|
|
Error handling is as follows:
|
|
|
|
error STOP_IOE processed as
|
|
|
|
not attached 1 report error and stop
|
|
0 out of tape
|
|
|
|
end of file 1 report error and stop
|
|
0 out of tape
|
|
|
|
OS I/O error x report error and stop
|
|
|
|
2.2.2 Paper Tape Punch (PTP)
|
|
|
|
The paper tape punch (PTP) writes data to a disk file. The POS
|
|
register specifies the number of the next data item to be written.
|
|
Thus, by changing POS, the user can backspace or advance the punch.
|
|
|
|
The paper tape punch implements these registers:
|
|
|
|
name size comments
|
|
|
|
BUF 8 last data item processed
|
|
DONE 1 device done flag
|
|
RPLS 1 return restart pulse flag
|
|
POS 31 position in the output file
|
|
TIME 24 time from I/O initiation to interrupt
|
|
STOP_IOE 1 stop on I/O error
|
|
|
|
Error handling is as follows:
|
|
|
|
error STOP_IOE processed as
|
|
|
|
not attached 1 report error and stop
|
|
0 out of tape
|
|
|
|
OS I/O error x report error and stop
|
|
|
|
2.2.3 Terminal Input (TTI)
|
|
|
|
The terminal input (TTI) polls the console keyboard for input. It
|
|
implements these registers:
|
|
|
|
name size comments
|
|
|
|
BUF 8 last data item processed
|
|
DONE 1 device done flag
|
|
POS 31 number of characters input
|
|
TIME 24 keyboard polling interval
|
|
|
|
2.2.4 Terminal Output (TTO)
|
|
|
|
The terminal output (TTO) writes to the simulator console window.
|
|
It implements these registers:
|
|
|
|
name size comments
|
|
|
|
BUF 8 last data item processed
|
|
DONE 1 device done flag
|
|
RPLS 1 return restart pulse flag
|
|
POS 31 number of characters output
|
|
TIME 24 time from I/O initiation to interrupt
|
|
|
|
2.2.5 Type 62 Line Printer (LPT)
|
|
|
|
The paper line printer (LPT) writes data to a disk file. The POS
|
|
register specifies the number of the next data item to be written.
|
|
Thus, by changing POS, the user can backspace or advance the printer.
|
|
|
|
The line printer implements these registers:
|
|
|
|
name size comments
|
|
|
|
BUF 8 last data item processed
|
|
PNT 1 printing done flag
|
|
SPC 1 spacing done flag
|
|
RPLS 1 return restart pulse flag
|
|
BPTR 6 print buffer pointer
|
|
POS 31 position in the output file
|
|
TIME 24 time from I/O initiation to interrupt
|
|
STOP_IOE 1 stop on I/O error
|
|
LBUF[0:119] 8 line buffer
|
|
|
|
Error handling is as follows:
|
|
|
|
error STOP_IOE processed as
|
|
|
|
not attached 1 report error and stop
|
|
0 out of tape or paper
|
|
|
|
OS I/O error x report error and stop
|
|
|
|
2.3 Symbolic Display and Input
|
|
|
|
The PDP-1 simulator implements symbolic display and input. Display is
|
|
controlled by command line switches:
|
|
|
|
-a display as ASCII character
|
|
-c display as FIODEC character string
|
|
-m display instruction mnemonics
|
|
|
|
Input parsing is controlled by the first character typed in or by command
|
|
line switches:
|
|
|
|
' or -a ASCII character
|
|
" or -c three character FIODEC string
|
|
alphabetic instruction mnemonic
|
|
numeric octal number
|
|
|
|
Instruction input uses modified PDP-1 assembler syntax. There are six
|
|
instruction classes: memory reference, shift, skip, operate, IOT, and
|
|
LAW.
|
|
|
|
Memory reference instructions have the format
|
|
|
|
memref {I} address
|
|
|
|
where I signifies indirect reference. The address is an octal number in
|
|
the range 0 - 0177777.
|
|
|
|
Shift instructions have the format
|
|
|
|
shift shift_count
|
|
|
|
The shift count is an octal number in the range 0-9.
|
|
|
|
Skip instructions consist of single mnemonics, eg, SZA, SZS4. Skip
|
|
instructions may be or'd together
|
|
|
|
skip skip skip...
|
|
|
|
The sense of a skip can be inverted by including the mnemonic I.
|
|
|
|
Operate instructions consist of single mnemonics, eg, CLA, CLI. Operate
|
|
instructions may be or'd together
|
|
|
|
opr opr opr...
|
|
|
|
IOT instructions consist of single mnemonics, eg, TYI, TYO. IOT
|
|
instructions may include an octal numeric modifier or the modifier I:
|
|
|
|
iot modifier
|
|
|
|
The simulator does not check the legality of skip, operate, or IOT
|
|
combinations.
|
|
|
|
Finally, the LAW instruction has the format
|
|
|
|
LAW {I} immediate
|
|
|
|
where immediate is in the range 0 to 07777.
|
|
|
|
2.4 Character Sets
|
|
|
|
The PDP-1's console was a Frieden Flexowriter; its character encoding
|
|
was known as FIODEC. The PDP-1's line printer used a modified Hollerith
|
|
character set. The following table provides equivalences between ASCII
|
|
characters and the PDP-1's I/O devices. In the console table, UC stands
|
|
for upper case.
|
|
|
|
PDP-1 PDP-1
|
|
ASCII console line printer
|
|
|
|
000 - 007 none none
|
|
bs 075 none
|
|
tab 036 none
|
|
012 - 014 none none
|
|
cr 077 none
|
|
016 - 037 none none
|
|
space 000 000
|
|
! {OR} UC+005 none
|
|
" UC+001 none
|
|
# {IMPLIES} UC+004 none
|
|
$ none none
|
|
% none none
|
|
& {AND} UC+006 none
|
|
' UC+002 none
|
|
( 057 057
|
|
) 055 055
|
|
* {TIMES} UC+073 072
|
|
+ UC+054 074
|
|
, 033 033
|
|
- 054 054
|
|
. 073 073
|
|
/ 021 021
|
|
0 020 020
|
|
1 001 001
|
|
2 002 002
|
|
3 003 003
|
|
4 004 004
|
|
5 005 005
|
|
6 006 006
|
|
7 007 007
|
|
8 010 010
|
|
9 011 011
|
|
: none none
|
|
; none none
|
|
< UC+007 034
|
|
= UC+033 053
|
|
> UC+010 034
|
|
? UC+021 037
|
|
@ {MID DOT} 040 {MID DOT} 040
|
|
A UC+061 061
|
|
B UC+062 062
|
|
C UC+063 063
|
|
D UC+064 064
|
|
E UC+065 065
|
|
F UC+066 066
|
|
G UC+067 067
|
|
H UC+070 070
|
|
I UC+071 071
|
|
J UC+041 041
|
|
K UC+042 042
|
|
L UC+043 043
|
|
M UC+044 044
|
|
N UC+045 045
|
|
O UC+046 046
|
|
P UC+047 047
|
|
Q UC+050 050
|
|
R UC+051 051
|
|
S UC+022 022
|
|
T UC+023 023
|
|
U UC+024 024
|
|
V UC+025 025
|
|
W UC+026 026
|
|
X UC+027 027
|
|
Y UC+030 030
|
|
Z UC+031 031
|
|
[ UC+057 none
|
|
\ {OVERLINE} 056 {OVERLINE} 056
|
|
] UC+055 none
|
|
^ {UP ARROW} UC+011 {UP ARROW} 035
|
|
_ UC+040 UC+040
|
|
` {RT ARROW} UC+020 036
|
|
a 061 none
|
|
b 062 none
|
|
c 063 none
|
|
d 064 none
|
|
e 065 none
|
|
f 066 none
|
|
g 067 none
|
|
h 070 none
|
|
i 071 none
|
|
j 041 none
|
|
k 042 none
|
|
l 043 none
|
|
m 044 none
|
|
n 045 none
|
|
o 046 none
|
|
p 047 none
|
|
q 050 none
|
|
r 051 none
|
|
s 022 none
|
|
t 023 none
|
|
u 024 none
|
|
v 025 none
|
|
w 026 none
|
|
x 027 none
|
|
y 030 none
|
|
z 031 none
|
|
{ none none
|
|
| UC+056 076
|
|
} none none
|
|
~ UC+003 013
|
|
del 075 none
|