1. New Features 1.1 GRI-909 - This is a new simulator for the GRI-909. - It has been hand-tested; so far, no software has been discovered. 1.2 VAX - SET CPU CONHALT will cause a HALT instruction to return to the boot ROM console rather than to SIMH. SET CPU SIMHALT restores the default behavior. - BRB/W self at IPL 1F stops the simulator. This is the default behavior of VMS at exit. 1.3 PDP-18b - ATTACH -A PTR/PTP attaches the reader and punch in ASCII mode. In ASCII mode, the reader automatically sets the high order bit of incoming alphabetic data, and the punch clears the high order bit of outgoing data. 1.4 SCP - DO -V echoes commands from the file as they are executed. - Under Windows, execution priority is set BELOW_NORMAL when the simulator is running. 2. Release Notes 2.1 Bugs Fixed - PDP-11 CPU: fixed updating of MMR0 on a memory management error. - VAX FPA: changed function names to avoid conflict with C math library. - 1401 MT: read end of record generates group mark without word mark. - 1401 DP: fixed address generation and checking. - SCP: an EXIT within a DO command will cause the simulator to exit. 3. In Progress - Interdata 16b/32b: coded, not tested. - SDS 940: coded, not tested. - IBM 1620: coded, not tested. If you would like to help with the debugging of the untested simulators, they can be made available by special request.
410 lines
11 KiB
Text
410 lines
11 KiB
Text
To: Users
|
|
From: Bob Supnik
|
|
Subj: PDP-1 Simulator Usage
|
|
Date: 15-Jun-02
|
|
|
|
COPYRIGHT NOTICE
|
|
|
|
The following copyright notice applies to both the SIMH source and binary:
|
|
|
|
Original code published in 1993-2002, written by Robert M Supnik
|
|
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.
|
|
|
|
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
|
|
PCQ[0:63] 16 PC prior to last jump or interrupt;
|
|
most recent PC change first
|
|
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 32 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 32 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 32 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 32 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 32 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
|