Skip to content

Instantly share code, notes, and snippets.

@tuklusan
Last active January 23, 2022 02:52
Show Gist options
  • Save tuklusan/a944246bb1906a246667a705ae72a0a9 to your computer and use it in GitHub Desktop.
Save tuklusan/a944246bb1906a246667a705ae72a0a9 to your computer and use it in GitHub Desktop.
SYSGEN: Dual-Ethernet PDP-11/93 RSX-11M-PLUS Version 4.6 Base level 87 (QBUS, 2 x DEQNA) - See https://supratim-sanyal.blogspot.com/2021/12/simh-simulating-pdp-11-with-two.html
# ---
# SYSGEN
# PDP-11 with two ethernet Adapters: One for DECnet and one for TCP/IP on a
# PDP-11/93 RSX-11M-PLUS Version 4.6 Base level 87 (QBUS, 2 x DEQNA)
# ---
# -----
# 31.34_NANAJU is simply a link to the SimH PDP11 binary
# 31.34_NANAJU.ini is the SimH configuration file
# -----
/home/linuxuser/simh.run/pdp11-93/bin $ cat 31.34_NANAJU.ini
; NODE NANAJU (31.34)
; PDP-11/93, RSX-11M-PLUS
set console log=../data/NANAJU-console.log
set cpu 11/93
set cpu 4M
set clk 60hz
;set system jclk_dflt=60hz
;set cpu idle
;The PDP-11/93 was part of the last generation of DEC-produced PDP-11's; it
; was QBUS only, its UNIBUS-capable twin being the PDP-11/94. Both used the
; KDJ11-E CPU. It ran at 1 VUPS, making the 93/94 the fastest PDP-11.
; 1 VUPS = 500kips
;set throttle 500k
set throttle 1800k
show cpu
show throttle
;First network adapter - DECnet only, 31.34
; delqa/deqna vector is o/s configured, not available at boot
set xq enabled
set xq type=deqna
set xq mac=AA-00-04-00-22-7C
attach xq vde:/tmp/vde-dnet.ctl
show xq
;Second network adapter - IP only, 10.42.2.39
; delqa/deqna vector is o/s configured, not available at boot
set xqb enabled
set xqb type=deqna
; SANYALnet Labs convention for MAC address of simulator network adapters
; carrying TCP/IP traffic is 08-00-2B-2A-02-HH where HH = last byte of IP
; address in Hex. This makes the last three bytes of the IP address (42.2.DDD)
; same as the last three bytes of the MAC address.
set xqb mac=08-00-2B-2A-02-27
attach xqb vde:/tmp/vde-ip.ctl
show xqb
set dli disable
set dlo disable
set hk disable
set rk disable
set hk disable
set rp disable
set rx disable
set ptr disable
set ptp disable
set tm disable
set tu disable
set xu disable
set rq enable
set rq0 RD54
attach rq0 ../data/NANAJU_RSX_DU0.dsk
set rq1 RD54
attach -r rq1 ../data/NANAJU_RSX_DU1.dsk
set rq2 disable
set rq3 disable
show rq
set rl enabled
;
set rl0 RL02
set rl0 locked
; Johnny's BQTCP distribution disk:
attach -r rl0 ../data/tcpip.dsk
;
;set rl1 locked
set rl1 RL02
;attach rl1 ../data/some-disk.dsk
;
;set rl2 locked
set rl2 RL02
;attach rl2 ../data/some-disk.dsk
;
;set rl3 locked
set rl3 RL02
;attach rl3 ../data/some-disk.dsk
show rl
set tq enable
;set tq tu81
set tq tk50
set tq0 format=tpc
set tq0 locked
;attach tq0 ../data/some-tape.tap
set tq1 disable
set tq2 disable
set tq3 disable
show tq
set dz enable
set dz lines=8
;set dz address=17760030
;set dz vec=330
attach dz 3134
show dz
set lpt enable
attach lpt ../data/line-printer.txt
show lpt
; Turn on the DPV network device and lines
; NOTE: SimH support for DPV11 is incomplete; DDCMP over DPV11 does not work yet
set dpv enabled
set dpv lines=1
attach dpv0 31340,tcp,connect=192.168.31.34:31341
show dpv
echo ___________________________________
echo DEVICE SUMMARY
echo ___________________________________
show dev
echo ___________________________________
echo
echo ___________________________________
echo CPU IOSPACE
echo ___________________________________
show cpu iospace
echo ___________________________________
echo
echo ___________________________________
echo SANYALnet Labs
echo NANAJU PDP-11/93 RSX-11M-PLUS
echo ___________________________________
echo On boot, enter time/date and answer the
echo prompts to start LAT and TCP/IP
echo ___________________________________
echo Now boot rq0
boot rq0
exit simh when PDP11/94 halts
detach all
reset all
echo Game over, thanks for playing RSX-11M-Plus
exit
/home/linuxuser/simh.run/pdp11-93/bin $
/home/linuxuser/simh.run/pdp11-93/bin $ ./31.34������������_NANAJU
removed '../data/NANAJU-console.log'
PDP-11 simulator V4.0-0 Current simh git commit id: 4c44975e
Logging to file "../data/NANAJU-console.log"
Disabling RK
Disabling HK
Disabling TM
CPU 11/93, NOCIS, autoconfiguration enabled, idle disabled
4088KB
Throttle: 1800 kiloinstructions
Throttle State: Waiting for Init - wait: 0
/home/linuxuser/simh.run/pdp11-93/bin $ /31.34_NANAJU.ini-25> attach xq vde:/tmp/vde-dnet.ctl
Eth: opened OS device vde:/tmp/vde-dnet.ctl
XQ address=17774440-17774457, no vector, BR5, MAC=AA:00:04:00:22:7C
type=DEQNA, polling=disabled, sanity=OFF
throttle=disabled, leds=(ON,ON,ON)
attached to vde:/tmp/vde-dnet.ctl
/home/linuxuser/simh.run/pdp11-93/bin $ /31.34_NANAJU.ini-36> attach xqb vde:/tmp/vde-ip.ctl
Eth: opened OS device vde:/tmp/vde-ip.ctl
XQB address=17774460-17774477, no vector, BR5, MAC=08:00:2B:2A:02:27
type=DEQNA, polling=disabled, sanity=OFF
throttle=disabled, leds=(ON,ON,ON)
attached to vde:/tmp/vde-ip.ctl
/home/linuxuser/simh.run/pdp11-93/bin $ /31.34_NANAJU.ini-54> attach rq0 ../data/NANAJU_RSX_DU0.dsk
RQ0: '../data/NANAJU_RSX_DU0.dsk' Contains an ODS1 File system
RQ0: Volume Name: RSX11MPBL87 Format: DECFILE11A Sectors In Volume: 615000
/home/linuxuser/simh.run/pdp11-93/bin $ /31.34_NANAJU.ini-56> attach -r rq1 ../data/NANAJU_RSX_DU1.dsk
RQ1: Unit is read only
RQ1: '../data/NANAJU_RSX_DU1.dsk' Contains an ODS1 File system
RQ1: Volume Name: DECUS Format: DECFILE11A Sectors In Volume: 3360000
RQ address=17772150-17772153, no vector, BR5, RQDX3, 4 units
RQ0 314MB, attached to ../data/NANAJU_RSX_DU0.dsk, write enabled
RD54, UNIT=0, autosize
RAW format
RQ1 1720MB, attached to ../data/NANAJU_RSX_DU1.dsk, read only, write locked
RD54, UNIT=1, autosize
RAW format
/home/linuxuser/simh.run/pdp11-93/bin $ /31.34_NANAJU.ini-66> attach -r rl0 ../data/tcpip.dsk
RL0: Unit is read only
RL0: '../data/tcpip.dsk' Contains an ODS1 File system
RL0: Volume Name: TCPIP Format: DECFILE11A Sectors In Volume: 20480
RL RLV12, address=17774400-17774411, vector=160, BR5, 4 units
RL0 5242KW, attached to ../data/tcpip.dsk, read only, on line
write locked, RL02, autosize
RAW format
RL1 5242KW, not attached, on line
write enabled, RL02, autosize
AUTO detect format
RL2 5242KW, not attached, on line
write enabled, RL02, autosize
AUTO detect format
RL3 5242KW, not attached, on line
write enabled, RL02, autosize
AUTO detect format
TQ TK50 (94MB), address=17774500-17774503, no vector, BR5, 4 units
TQ0 not attached, write locked, UNIT=0
TPC format, capacity=98MB
/home/linuxuser/simh.run/pdp11-93/bin $ /31.34_NANAJU.ini-96> attach dz 3134
Listening on port 3134
DZ address=17760100-17760117*, vector=300-314*, BR5, lines=8
attached to 3134, 8b, 0 current connections
LPT address=17777514-17777517, vector=200, BR4
attached to ../data/line-printer.txt
/home/linuxuser/simh.run/pdp11-93/bin $ /31.34_NANAJU.ini-106> attach dpv0 31340,tcp,connect=192.168.31.34:31341
Line 0 Listening on port 31340
DPV address=17760310-17760317*, vector=320-324*, BR5, lines=1
attached to Line=0,31340,Connect=192.168.31.34:31341, speed=0 (unrestricted), No Corruption
W3 Jumper Installed, W5 Jumper Removed, W6 Jumper Installed
___________________________________
DEVICE SUMMARY
___________________________________
PDP-11 simulator configuration
CPU 11/93, NOCIS, autoconfiguration enabled, idle disabled
SYSTEM
RHA disabled
RHB disabled
RHC disabled
CLK 60Hz, address=17777546-17777547, vector=100, BR6
PCLK disabled
PTR disabled
PTP disabled
TTI 7p, address=17777560-17777563, vector=60, BR4
TTO 7p, address=17777564-17777567, vector=64, BR4
TDC disabled
CR disabled
LPT address=17777514-17777517, vector=200, BR4
DLI disabled
DLO disabled
DCI disabled
DCO disabled
DZ address=17760100-17760117*, vector=300-314*, BR5, lines=8
VH disabled
RC disabled
RF disabled
RK disabled
RL RLV12, address=17774400-17774411, vector=160, BR5, 4 units
HK disabled
RX disabled
RY disabled
RP disabled
RS disabled
RQ address=17772150-17772153, no vector, BR5, RQDX3, 4 units
RQB disabled
RQC disabled
RQD disabled
TC disabled
TM disabled
TS disabled
TQ TK50 (94MB), address=17774500-17774503, no vector, BR5, 4 units
TU disabled
TA disabled
VT disabled
XQ address=17774440-17774457, no vector, BR5, MAC=AA:00:04:00:22:7C
type=DEQNA, polling=disabled, sanity=OFF
throttle=disabled, leds=(ON,ON,ON)
XQB address=17774460-17774477, no vector, BR5, MAC=08:00:2B:2A:02:27
type=DEQNA, polling=disabled, sanity=OFF
throttle=disabled, leds=(ON,ON,ON)
XU disabled
XUB disabled
KG disabled
DMC disabled
DUP disabled
DPV address=17760310-17760317*, vector=320-324*, BR5, lines=1
KDP disabled
KE disabled
ROM 4 units
CH disabled
NG disabled
DAZ disabled
___________________________________
___________________________________
CPU IOSPACE
___________________________________
Address Vector BR # Device
-------------------- -------- -- - ------
17760100 - 17760117* 300-314 5 2 DZ
17760310 - 17760317* 320-324 5 1 DPV
17772150 - 17772153 5 1 RQ
17772200 - 17772277 1 CPU
17772300 - 17772317 1 CPU
17772320 - 17772337 1 CPU
17772340 - 17772357 1 CPU
17772360 - 17772377 1 CPU
17772516 - 17772517 1 CPU
17774400 - 17774411 160 5 1 RL
17774440 - 17774457 5 1 XQ
17774460 - 17774477 5 1 XQB
17774500 - 17774503 5 1 TQ
17777514 - 17777517 200 4 1 LPT
17777520 - 17777527 1 CPU
17777546 - 17777547 100 6 1 CLK
17777560 - 17777563 060 4 1 TTI
17777564 - 17777567 064 4 1 TTO
17777572 - 17777577 1 CPU
17777600 - 17777617 1 CPU
17777620 - 17777637 1 CPU
17777640 - 17777657 1 CPU
17777660 - 17777677 1 CPU
17777740 - 17777775 1 CPU
17777776 - 17777777 1 CPU
___________________________________
___________________________________
SANYALnet Labs
NANAJU PDP-11/93 RSX-11M-PLUS
___________________________________
On boot, enter time/date and answer the
prompts to start LAT and TCP/IP
___________________________________
Now boot rq0
RSX-11M-PLUS V4.6 BL87 2044.KW System:"PIDP11"
>RED DU:=SY:
>RED DU:=LB:
>RED DU:=SP:
>MOU DU0:"RSX11MPBL87"/LRU=14/WIN=30/ACP=UNIQUE
>@DU:[1,2]STARTUP
>;
>; Executing LB:[1,2]STARTUP.CMD
>;
>;
Z
>TIM /SYNC
>;'PLEASE enter Time and Date '
>* (Default:12-DEC-2021 03:57) [S D:"09:30 30-DEC-2018" T:1M]: 12-DEC-2021 03:57
>; .ASKS $TIME Please enter time and date (Default:12-DEC-2021 03:57)
>TIME 12-DEC-2021 03:57
>ACS SY:/BLKS=1024.
>CON DIS CONT ATTR
SYS
PDP-11/93, EIS,QBUS,D-Space,Cache,TOY,FPP,
Clock=KW11-L, $TKPS=60., $TTPRM=000002, Cache_control=000001
YLA
Csr=177560, Vector=000060, Pri=000005, Urm=000001
YLB
Csr=160010, Vector=000310, Pri=000005, Urm=000001
YLC
Csr=160020, Vector=000320, Pri=000005, Urm=000001
YZA
Csr=160030, Vector=000330, Pri=000005, Urm=000001
DKA
Csr=177404, Vector=000220, Pri=000005, Urm=000001
DLA
Csr=174400, Vector=000160, Pri=000005, Urm=000001
DUA
Csr=172150, Vector=000154, Pri=000005, Urm=000001
MUA
Csr=174500, Vector=000260, Pri=000005, Urm=000001
CRA
Csr=177160, Vector=000230, Pri=000006, Urm=000001
MSA
Csr=172522, Vector=000224, Pri=000005, Urm=000001
DYA
Csr=177170, Vector=000264, Pri=000005, Urm=000001
DDA
Csr=176500, Vector=000300, Pri=000004, Urm=000001
LPA
Csr=177514, Vector=000200, Pri=000004, Urm=000001
PPA
Csr=177554, Vector=000074, Pri=000004, Urm=000001
PRA
Csr=177550, Vector=000070, Pri=000004, Urm=000001
>CON ONLINE ALL
>ELI /LOG/LIM
>CLI /INIT=DCL/CTRLC/DPR="<15><12>/$ /"
>INS LB:[1,1]RMSRESAB.TSK/RON=YES/PAR=GEN
>INS LB:[1,1]RMSLBL.TSK/RON=YES/PAR=GEN
>INS LB:[1,1]RMSLBM.TSK/RON=YES/PAR=GEN
>INS LB:[3,54]RMSCNV.TSK
>INS LB:[3,54]RMSDSP.TSK
>INS $QMGCLI
>INS $QMGCLI/TASK=...PRI
>INS $QMGCLI/TASK=...SUB
>QUE /START:QMG
>INS $QMGPRT/TASK=PRT.../SLV=NO
>START/ACCOUNTING
>QUE BAP0:/BATCH
>QUE BAP0:/AS:BATCH
>SET /COLOG=ON
>ASN LB:=XX:
>SET /NETUIC=[5,54]
>SET /UIC=[1,54]
>PIP LB:[5,54]NNS.TMP;*/PR/SY:D/NM
>PIP LB:[1,54]NNS.TMP;*/DE/NM
>SET /UIC=[200,200]
>ASN XX:=LB:
>SET /SYSUIC=[5,54]
>LOA NN:/VEC
>CON ONL NN:
>SET /SYSUIC=[1,54]
>ASN =LB:
>INS XX:[5,54]SCPFSL
>INS XX:[5,54]NNS
>;INS XX:[5,54]NNCFSL
>SCP START FROM XX:[5,54] SIL (I)
>INS XX:[5,54]NTINIT
>INS XX:[5,54]NTL
>INS XX:[5,54]MLD
>INS XX:[5,54]EVC
>INS XX:[5,54]NCPFSL
>; INS XX:[5,54]CFEFSL
>; INS XX:[5,54]VNP
>INS XX:[5,54]NMVACP
>SET /SYSUIC=[5,54]
>ASN XX:=LB:
>LOA NM:/HIGH/VEC
>CON ONL NM:
>ASN =LB:
>SET /SYSUIC=[1,54]
>INS XX:[5,54]LOO
>INS XX:[5,54]LOO/TASK=LOO...
>INS XX:[5,54]EVFFSL
>INS XX:[5,54]NETACP
>INS XX:[5,54]RCP1
>INS XX:[5,54]RCP2
>INS XX:[5,54]NICE
>INS XX:[5,54]EVR
>INS XX:[5,54]NTD
>INS XX:[5,54]NTDEMO
>INS XX:[5,54]LIN
>INS XX:[5,54]MIR
>INS XX:[5,54]NVPFSL
>INS XX:[5,54]DLLFSL
>INS XX:[5,54]DUM
>INS XX:[5,54]CCR
>INS XX:[5,54]HLD/UIC=[5,54]
>INS XX:[5,54]NFTFSL
>INS XX:[5,54]FTSFSL
>INS XX:[5,54]FTSDEQFSL
>SET /UIC=[1,1]
>PIP LB:[0,0]001004.DIR/PR:0
>SET /UIC=[200,200]
>QUE FTSQUE:/CR/NM
>QUE FTSDEQ:/SP/EX
>QUE FTSDEQ:/AS:FTSQUE
>INS XX:[5,54]FAL
>INS XX:[5,54]FALLOG
>INS XX:[5,54]MCM
>INS XX:[5,54]RMT
>INS XX:[5,54]RMTACP/CLI=YES
>CLI /INIT=RMTACP/NULL/RESTRICT/CPR="<15><12>/RMT>/"
>SET /SYSUIC=[5,54]
>ASN XX:=LB:
>LOA HT:/HIGH/VEC
>SET /SYSUIC=[1,54]
>ASN =LB:
>INS XX:[5,54]RMHACP
>INS XX:[5,54]NCTCTL
>INS XX:[5,54]TLKFSL
>INS XX:[5,54]LSN
>INS XX:[5,54]PHONE/TASK=...PHO
>INS XX:[5,54]PHONE/TASK=PHO$$$
>INS XX:[5,54]TCL
>NCP SET SYS
NTL -- System name changed to "RSX11M"
>NCP SET EXE STA ON
03:57:29 COT -- Date is 12-DEC-2021
03:57:29 Event type 2.0, Local node state change
Occurred 12-DEC-2021 03:57:29 on node 30.30 (RSX11M)
Reason for state change: Operator command, Old node state = Off
New node state = On
>NCP SET OBJ 27 NAM MAL$$$ COP 8 USE DEF VER OFF
>NCP SET OBJ 30 NAM DDM$$$ COP 5 USE LOG VER ON
>NCP SET EXE OUT PROXY ENABLE
>NCP SET EXE INC PROXY ENABLE
>NCP SET NOD FRODO ADD 30.1
>NCP SET LIN UNA-0 ALL
NTL -- Config File -- Device UNA-0 Offline
CNT$DF 0,120,174510,5,,NX
NCP -- Set failed, operation failure
Network Loader function failed
>NCP SET CIR UNA-0 STA ON
NCP -- Set failed, component in wrong state, Line
>; DU0:,140710,11,61130,1000,LOD,ONL,MTD,NFO,PUB,NAT,NAL,
>MOU DU1:/OVR/PUB/ACP=UNIQUE/LRU=14/WIN=30/VI
Volume Information
Class: Files-11
Device: DU01
Volume label:DECUS
Pack serial: 00000000004
Owner: [1,1]
Protection: [RWCD,RWCD,RWCD,RWCD]
Default: [RWED,RWED,RWED,R]
Processor: DU01F1
>ASN DU1:=RU1: /GBL
>SET /CACHE=DU0:CREATE=CACHE:GEN:1000.:TOP
>SET /CACHE=DU0:(Nodef, Virt=5, Read=5, Dir=1, Nolog, Over=4.)
>SET /CACHE=DU1:(Nodef, Virt=5, Read=5, Dir=1, Nolog, Over=4.)
>INS $MACFSL
>INS $TKBFSL
>INS $LBR
>INS $BRU
>INS LB:[1,1]F7FCLS/PAR=GEN/RON=YES
>INS LB:[1,1]DAPRES/PAR=GEN/RON=YES
>INS LB:[5,54]DTS/INC=2560./TASK=...DTS
>INS LB:[5,54]DTR/INC=2560./TASK=DTR...
>INS $F77
>INS $KEDFSLMU/INC=35000
>INS $EDTFSL
>INS $FTBFSL
>INS $MCE/PRI=55.
>INS $APL6/INC=37000
>INS $DTR
>INS $DDMF
>INS $CC
>INS $AS
>INS $GREP
>INS $SRD
>INS $RNO
>INS $TECO
>INS $TECO/TASK=...MAK
>INS $FLXFSL
>INS $BAD
>INS $VFYFSL
>INS $CMPFSL
>INS $DMPFSL
>INS $COOKIE
>INS $WHO
>INS $MAITSK/TASK=...MAI
>INS $NOTTSK/TASK=MAL...
>INS $SNDTSK/TASK=...SEN
>INS $SRVTSK/TASK=MAL$$$
>INS $KILLER
>INS $PHN
>INS $FND
>INS $CLR
>INS $K11RSX
>INS $ADVENTURE/TASK=...ADV
>INS $TIZ
>INS $ORC
>INS LB:[1,1]BP2SML/RON=YES/PAR=GEN
>INS $BP2IC2/TASK=...BP2/INC=4000
>INS $B2RESQ/TASK=...B2R
>INS $PDP11C/TASK=...CCC
>INS LB:[1,1]CCSMRX/RON=YES/PAR=GEN
>INS $PDPDBG/TASK=...DBG
>INS $C81/TASK=...C81
>INS $C81RFM/TASK=C81RFM
>INS $C81ODL/TASK=...BLD
>INS $PAS/TASK=...PAS
>INS $NEMA/TASK=...EMA
>INS $UPTIME/TASK=...UPT
>INS $SRTUTL/TASK=...SRT
>INS $MGEUTL/TASK=...MGE
>INS $GREP/TASK=...GRP
>INS $FIG/TASK=...FIG
>INS $USE/TASK=...MON
>; Install 24 line VTL as MORE
>INS $VTL/TASK=...MOR
>; Install 48 Line VTL as VTL
>INS $VTLL/TASK=...VTL
>INS $XLISP/TASK=...LIS
>;
>; Install ACD line editing
>;
>ACD INS LB:[4,54]EDTACD AS NUM 2 TOP ASS CLE$EDT
>ACD INS LB:[4,54]EMAACD AS NUM 4 TOP ASS CLE$EMACS
>INS $EXP
>;
>; Remove TDX.TSK catch-all and install CCL
>;
>REM ...CA.
>INS LB:[1,54]CCLRES.TSK/RON=YES/PAR=GEN
>INS LB:[1,54]CCL/TASK=...CA.
>;
>; Until UNA-0 is running correctly in Simh
>; the commands below should not be executed
>;
>; LAT Terminal configuration
>;
>INS LB:[5,54]LCPFSL
>LCP CREATE /TERMINALS=8
>;
>; LAT ports start after last physical DL, DZ, DHV TTnn:
>; TT14: is A/D on port 2 on DS21
>; TT15: is HP7550 port 3 on DS21
>;
>* Load LAT? [Y/N D:Y T:15S]: N
>SET /NAMED
>SET /UIC=[1,2]
>* Load TCP/IP? [Y/N D:Y T:15S]: N
>@ <EOF>
>
>BYE
03:57:54 Logout user [1,2] TT0:
Have a nice day
12-DEC-2021 03:57 TT0: logged off RSX11M
>
>HELLO SYSTEM
Password:
RSX-11M-PLUS V4.6 BL87 [1,54] System RSX11M
12-DEC-2021 03:58 Logged on Terminal TT0: as SYS1
Good Morning
03:58:02 Login user SYSTEM [1,1] TT0:
*****************************************************************
* *
* Welcome to RSX-11M-PLUS *
* PiDP-11/70 PiDP11 *
* Version 4.6 Base level 87 *
* This is file LB:[1,2]LOGIN.TXT *
* *
*****************************************************************
Last interactive login on Sunday, December 30, 2018 00:21:54 (TT3:)
Last batch login on Saturday, December 29, 2018 23:03:36
>
>NCP SET EXEC STAT OFF
>
03:58:11 Event type 2.0, Local node state change
Occurred 12-DEC-2021 03:58:11 on node 30.30 (RSX11M)
Reason for state change: Operator command, Old node state = On
New node state = Off
>
>
>CON DISP FULL ATTR
SYS SYS Online,Accpath
PDP-11/93, EIS,QBUS,D-Space,Cache,TOY,FPP,
Clock=KW11-L, $TKPS=60., $TTPRM=000002, Cache_control=000001
YLA CPA Online,Accpath,Driver
Csr=177560, Vector=000060, Pri=000005, Urm=000001
YLB CPA Offline,Accpath,Driver
Csr=160010, Vector=000310, Pri=000005, Urm=000001
YLC CPA Offline,Accpath,Driver
Csr=160020, Vector=000320, Pri=000005, Urm=000001
YZA CPA Offline,Accpath,Driver
Csr=160030, Vector=000330, Pri=000005, Urm=000001
DKA CPA Offline,Accpath,Driver
Csr=177404, Vector=000220, Pri=000005, Urm=000001
DLA CPA Online,Accpath,Driver
Csr=174400, Vector=000160, Pri=000005, Urm=000001
DUA CPA Online,Accpath,Driver
Csr=172150, Vector=000154, Pri=000005, Urm=000001
MUA CPA Online,Accpath,Driver
Csr=174500, Vector=000260, Pri=000005, Urm=000001
CRA CPA Offline,Accpath,Driver
Csr=177160, Vector=000230, Pri=000006, Urm=000001
MSA CPA Offline,Accpath,Driver
Csr=172522, Vector=000224, Pri=000005, Urm=000001
DYA CPA Offline,Accpath,Driver
Csr=177170, Vector=000264, Pri=000005, Urm=000001
DDA CPA Offline,Accpath,Driver
Csr=176500, Vector=000300, Pri=000004, Urm=000001
LPA CPA Online,Accpath,Driver
Csr=177514, Vector=000200, Pri=000004, Urm=000001
PPA CPA Offline,Accpath,Driver
Csr=177554, Vector=000074, Pri=000004, Urm=000001
PRA CPA Offline,Accpath,Driver
Csr=177550, Vector=000070, Pri=000004, Urm=000001
LHA CPA Online,Accpath,Driver
Csr=177776, Vector=000000, Pri=000005, Urm=000001
VF0: Online,Prv_Diag,Accpath,Driver,Type=
VF1: Online,Prv_Diag,Accpath,Driver,Type=
VF2: Online,Prv_Diag,Accpath,Driver,Type=
VF3: Online,Prv_Diag,Accpath,Driver,Type=
CO0: Online,Accpath,Driver
TT0: YLA0: Online,Accpath,Context,Driver
TT1: YLB0: Offline,Prv_Diag,Driver
TT2: YLC0: Offline,Prv_Diag,Driver
TT3: YZA0: Offline,Prv_Diag,Driver
TT4: YZA1: Offline,Prv_Diag,Driver
TT5: YZA2: Offline,Prv_Diag,Driver
TT6: YZA3: Offline,Prv_Diag,Driver
TT7: YZA4: Offline,Prv_Diag,Driver
TT10: YZA5: Offline,Prv_Diag,Driver
TT11: YZA6: Offline,Prv_Diag,Driver
TT12: YZA7: Offline,Prv_Diag,Driver
TT13: LHA0: Online,Accpath,Driver
TT14: LHA1: Online,Accpath,Driver
TT15: LHA2: Online,Accpath,Driver
TT16: LHA3: Online,Accpath,Driver
TT17: LHA4: Online,Accpath,Driver
TT20: LHA5: Online,Accpath,Driver
TT21: LHA6: Online,Accpath,Driver
TT22: LHA7: Online,Accpath,Driver
VT0: Online,Accpath,Driver
DK0: DKA0: Offline,Prv_Diag,Driver
DK1: DKA1: Offline,Prv_Diag,Driver
DK2: DKA2: Offline,Prv_Diag,Driver
DK3: DKA3: Offline,Prv_Diag,Driver
DL0: DLA0: Online,Accpath,Driver,Type=RL02
DL1: DLA1: Online,Accpath,Driver,Type=RL02
DL2: DLA2: Online,Accpath,Driver,Type=RL02
DL3: DLA3: Online,Accpath,Driver,Type=RL02
DU0: DUA0: Online,Accpath,Context,Driver,Type=RD54
DU1: DUA1: Online,Accpath,Context,Driver,Type=RD54
DU2: DUA2: Offline,Accpath,Driver
DU3: DUA3: Offline,Accpath,Driver
MU0: MUA0: Online,Accpath,Driver,Type=TK50
CR0: CRA0: Offline,Prv_Diag,Driver
MS0: MSA0: Offline,Prv_Diag,Driver
DY0: DYA0: Offline,Prv_Diag,Driver
DY1: DYA1: Offline,Prv_Diag,Driver
DD0: DDA0: Offline,Prv_Diag,Driver
DD1: DDA1: Offline,Prv_Diag,Driver
LP0: LPA0: Online,Accpath,Driver
PP0: PPA0: Offline,Prv_Diag,Driver
PR0: PRA0: Offline,Prv_Diag,Driver
NL0: Online,Accpath,Driver
NN0: Online,Accpath,Driver
NM0: Online,Accpath,Driver
HT0: Offline,Accpath,Driver
HT1: Offline,Accpath,Driver
HT2: Offline,Accpath,Driver
HT3: Offline,Accpath,Driver
RT0: Online,Accpath,Driver
RT1: Online,Accpath,Driver
RT2: Online,Accpath,Driver
RT3: Online,Accpath,Driver
>
>CON DISP ATTR
SYS
PDP-11/93, EIS,QBUS,D-Space,Cache,TOY,FPP,
Clock=KW11-L, $TKPS=60., $TTPRM=000002, Cache_control=000001
YLA
Csr=177560, Vector=000060, Pri=000005, Urm=000001
YLB
Csr=160010, Vector=000310, Pri=000005, Urm=000001
YLC
Csr=160020, Vector=000320, Pri=000005, Urm=000001
YZA
Csr=160030, Vector=000330, Pri=000005, Urm=000001
DKA
Csr=177404, Vector=000220, Pri=000005, Urm=000001
DLA
Csr=174400, Vector=000160, Pri=000005, Urm=000001
DUA
Csr=172150, Vector=000154, Pri=000005, Urm=000001
MUA
Csr=174500, Vector=000260, Pri=000005, Urm=000001
CRA
Csr=177160, Vector=000230, Pri=000006, Urm=000001
MSA
Csr=172522, Vector=000224, Pri=000005, Urm=000001
DYA
Csr=177170, Vector=000264, Pri=000005, Urm=000001
DDA
Csr=176500, Vector=000300, Pri=000004, Urm=000001
LPA
Csr=177514, Vector=000200, Pri=000004, Urm=000001
PPA
Csr=177554, Vector=000074, Pri=000004, Urm=000001
PRA
Csr=177550, Vector=000070, Pri=000004, Urm=000001
LHA
Csr=177776, Vector=000000, Pri=000005, Urm=000001
VF0: ,Type=
VF1: ,Type=
VF2: ,Type=
VF3: ,Type=
CO0:
TT0: YLA0:
TT1: YLB0:
TT2: YLC0:
TT3: YZA0:
TT4: YZA1:
TT5: YZA2:
TT6: YZA3:
TT7: YZA4:
TT10: YZA5:
TT11: YZA6:
TT12: YZA7:
TT13: LHA0:
TT14: LHA1:
TT15: LHA2:
TT16: LHA3:
TT17: LHA4:
TT20: LHA5:
TT21: LHA6:
TT22: LHA7:
VT0:
DK0: DKA0:
DK1: DKA1:
DK2: DKA2:
DK3: DKA3:
DL0: DLA0:,Type=RL02
DL1: DLA1:,Type=RL02
DL2: DLA2:,Type=RL02
DL3: DLA3:,Type=RL02
DU0: DUA0:,Type=RD54
DU1: DUA1:,Type=RD54
DU2: DUA2:
DU3: DUA3:
MU0: MUA0:,Type=TK50
CR0: CRA0:
MS0: MSA0:
DY0: DYA0:
DY1: DYA1:
DD0: DDA0:
DD1: DDA1:
LP0: LPA0:
PP0: PPA0:
PR0: PRA0:
NL0:
NN0:
NM0:
HT0:
HT1:
HT2:
HT3:
RT0:
RT1:
RT2:
RT3:
>
>
>
>CON DIS CONT ATTR
SYS
PDP-11/93, EIS,QBUS,D-Space,Cache,TOY,FPP,
Clock=KW11-L, $TKPS=60., $TTPRM=000002, Cache_control=000001
YLA
Csr=177560, Vector=000060, Pri=000005, Urm=000001
YLB
Csr=160010, Vector=000310, Pri=000005, Urm=000001
YLC
Csr=160020, Vector=000320, Pri=000005, Urm=000001
YZA
Csr=160030, Vector=000330, Pri=000005, Urm=000001
DKA
Csr=177404, Vector=000220, Pri=000005, Urm=000001
DLA
Csr=174400, Vector=000160, Pri=000005, Urm=000001
DUA
Csr=172150, Vector=000154, Pri=000005, Urm=000001
MUA
Csr=174500, Vector=000260, Pri=000005, Urm=000001
CRA
Csr=177160, Vector=000230, Pri=000006, Urm=000001
MSA
Csr=172522, Vector=000224, Pri=000005, Urm=000001
DYA
Csr=177170, Vector=000264, Pri=000005, Urm=000001
DDA
Csr=176500, Vector=000300, Pri=000004, Urm=000001
LPA
Csr=177514, Vector=000200, Pri=000004, Urm=000001
PPA
Csr=177554, Vector=000074, Pri=000004, Urm=000001
PRA
Csr=177550, Vector=000070, Pri=000004, Urm=000001
LHA
Csr=177776, Vector=000000, Pri=000005, Urm=000001
>
>
>
>@[200,200]SYSGEN
>;
>; RSX-11M-PLUS V4.6 BL87 SYSGEN
>;
>; Copyright (c) 1995-1999 by Mentec Inc., U.S.A.
>;
>SET /UIC=[200,200]
>SET /DPRO=[RWED,RWED,RWE,R]
>;
>; To exit from the SYSGEN procedure at any time, type CTRL/Z.
>;
>; If you are unsure of the answer to a question for which a de-
>; fault answer exists, use the default answer.
>;
>;
>;
>;===================================================
>; Choosing SYSGEN Options 12-DEC-2021 at 04:01
>;===================================================
>;
>;
>;
>; Every question is preceded by a question number (for example SU010)
>; which you can use to find the explanation of the question in the
>; RSX-11M-PLUS System Generation and Installation Guide.
>;
>; An explanation of every question is also available by pressing
>; the ESC key (or the ALTMODE key) in response to the question.
>;
>; If you are unfamiliar with the SYSGEN procedure, the explanation of
>; each question can be printed automatically before the question.
>;
>* SU010 Do you always want the explanation printed? [Y/N D:N]: Y
>;
>; SYSGEN always creates saved answer files containing your responses
>; to the SYSGEN questions:
>;
>; SYSGENSA1.CMD Setup questions, Executive options
>; SYSGENSA2.CMD Peripheral configuration
>; SYSGENSA3.CMD Nonprivileged task builds
>;
>; You should perform a PREPGEN first to create saved answer files, and
>; then perform a SYSGEN, specifying those saved answer files as input
>; to the Executive, peripheral, and nonprivileged task build sections.
>;
>; If you have performed a SYSGEN (or PREPGEN) before, you can use the
>; saved answer file created during that SYSGEN as input to this SYSGEN.
>; SYSGEN uses the saved answers as your responses to the Executive
>; questions.
>;
>* SU020 Do you want to use a saved answer file as input for
>* the Executive options? [Y/N D:N]: N
>;
>* SU040 Do you want to use a saved answer file as input for
>* the peripheral configuration? [Y/N D:N]: N
>;
>* SU060 Do you want to use a saved answer file as input for
>* the nonprivileged task builds? [Y/N D:N]: N
>;
>; A PREPGEN allows you to answer all the SYSGEN questions and create
>; saved answer files without actually generating a system: no MCR
>; commands are executed, no files are deleted, and the Executive is
>; not assembled or built.
>;
>; After you have successfully completed a PREPGEN, you can perform a
>; SYSGEN using the saved answer files from the PREPGEN. The SYSGEN
>; will then run unattended.
>;
>* SU080 Do you want to do a PREPGEN? [Y/N D:N]: N
>;
>; You should have a disk spinning in a disk drive which is a copy of
>; your distribution kit. This is your target system disk, the disk on
>; which you will perform the SYSGEN. This disk should already be
>; mounted with the MOUNT command so that you have access to it.
>;
>; Enter the name of the drive containing this disk in the form ddnn:,
>; i.e., DB2:.
>;
>* SU090 Enter the name of the disk drive containing your
>* target system disk [ddnn:] [S R:2-5]: DU0:
>;
>ASN DU0:=IN:
>ASN DU0:=OU:
>ASN DU0:=LB:
>ASN DU0:=WK:
>ASN DU0:=TK:
>ASN DU0:=BC:
>ASN DU0:=LI:
>ASN DU0:=OB:
>ASN DU0:=EX:
>ASN DU0:=MP:
>;
>; You can:
>;
>; o do a complete SYSGEN
>;
>; o continue a previous SYSGEN from where you left off
>;
>; o do an individual section of SYSGEN
>;
>;
>; A complete SYSGEN consists of:
>;
>; Choosing Executive options
>; Choosing Peripheral Configuration
>;
>; Assembling the Executive and Drivers
>;
>; Building the Executive and Drivers
>; Building the Privileged Tasks
>; Building the Nonprivileged Tasks
>;
>; Creating the System Image File
>;
>; If you do not choose to do a complete SYSGEN, you can continue
>; a previous SYSGEN from where you left off or do an individual
>; section of SYSGEN.
>;
>* SU120 Do you want to do a complete SYSGEN? [Y/N D:Y]: Y
>;
>INS [3,54]MAC/TASK=MACT0
>INS [3,54]PIP/TASK=PIPT0
>INS [3,54]LBR/TASK=LBRT0
>INS [3,54]TKB/TASK=TKBT0
>INS [3,54]VMR/TASK=VMRT0
>;
>;
>;
>;======================================================
>; Choosing Executive Options 12-DEC-2021 at 04:02
>;======================================================
>;
>;
>;
>; The answers to the questions in this section are put in the saved
>; answer file [200,200]SYSGENSA1.CMD.
>;
>; You may now enter a comment describing the system you are building.
>; This comment is included in the SYSGENSA1 saved answer file for
>; documentation, and is printed out when the saved answer file is
>; later used as input.
>;
>; Enter a comment for inclusion in the SYSGENSA1 saved answer file.
>; The comment may contain more than one line. The "V" in the right
>; margin below marks the maximum line length. When you are done,
>; press RETURN in response to the prompt.
>; V
>* Comment [S R:0.-55.]: PDP-11/93 2*DEQNA 1*DPV11 LINE
>* Comment [S R:0.-55.]: NANAJU (31.34)
>* Comment [S R:0.-55.]: SANYALNET LABS
>* Comment [S R:0.-55.]: HTTP://TUKLUSAN.DECSYSTEM.ORG/
>* Comment [S R:0.-55.]:
>;
>; RSX-11M-PLUS may be run on the following PDP-11 processors:
>;
>; 11/23-PLUS (also called MicroPDP-11/23 and 11/23-B)
>; 11/24
>; 11/44
>; 11/53
>; 11/70
>; 11/73 (also called MicroPDP-11/73)
>; 11/83 (also called MicroPDP-11/83)
>; 11/93 (also called MicroPDP-11/93)
>; 11/84
>; 11/94
>;
>; M70,80,90,100 MENTEC modules (treated as an 11/83)
>; M11 processor (MENTEC)
>;
>; LSI-11/73
>;
>* CE010 What is your target processor type? [S R:3.-12. D:"11/70"]: 11/93
>;
>; The following RSX-11M-PLUS Executives may be generated:
>;
>; o Full-functionality Executive
>;
>; o User-tailored Executive
>;
>;
>; The Full-functionality Executive includes all features of the
>; RSX-11M-PLUS operating system that can be used on your processor.
>;
>; Executive data space support
>; User data space support
>; Task headers out of pool support
>; Extended logical name support
>; Supervisor-mode library support
>; Fast map facility
>; All DIGITAL-supplied drivers are loadable
>; ICB pool size of 128. words
>; Shadow recording/load sharing support
>; Floating point processor (FPU) support
>; Disk data caching support
>; Console driver support
>; Accounting support
>; Batch processor support
>; Queue Manager for spooling
>; DIGITAL Command Language and alternate CLI support
>; CTRL/C abort support
>; Extended security support
>; Alternate checkpoint algorithm support
>; High performance FCP
>; File windows in secondary pool support
>; Decimal version numbers in file specifications
>; Virtual terminal support with a default virtual terminal
>; unit buffer size of 120. bytes and a maximum of 184. bytes
>; Character translation support
>; Terminal driver extended I/O support
>; Time-out on unsolicited terminal input of 30. seconds
>;
>;
>; The User-tailored Executive will require you to answer at least
>; twenty additional questions specifying which standard RSX-11M-PLUS
>; features you wish to disable. You should not choose the User-tailored
>; Executive unless you need to disable specific RSX-11M-PLUS features.
>;
>;
>; For information and guidelines on generating a User-tailored Executive,
>; please refer to the RSX-11M-PLUS System Generation and Installation
>; Guide.
>;
>; If you do not understand the options presented by the system
>; generation process when configuring an Executive yourself, please
>; select the Full-functionality Executive.
>;
>;
>* CE020 Do you want the Full-functionality Executive? [Y/N D:Y]: Y
>;
>; If a primary pool failure occurs, this option will allow the
>; the system to utilize ICB pool space as a secondary source to
>; be able to attempt to resolve the pool allocation failure.
>;
>; Some applications may have to be aware of this possibility, or
>; undefined results may occur. All supported software products
>; are aware of this change, and do function correctly if this option
>; is chosen.
>;
>* CE115 Do you want to use ICB pool as backup for primary pool ? [Y/N D:N]: N
>;
>; Network software provides the capability of simultaneously
>; operating tasks on different systems to establish logical
>; communication links and to exchange data. This software is
>; not provided with RSX-11M-PLUS, but must be purchased separately.
>;
>; If you choose this option, DCL and alternate CLI support will
>; also be included.
>;
>* CE120 Do you want support for communications products
>* (such as DECnet, PSI, and LAT)? [Y/N D:N]: Y
>;
>; The system name is an arbitrary six-character name.
>; This should be the same as the DECnet node name, if any.
>;
>* CE130 What is the system name? [S R:0-6 D:"RSXMPL"]: NANAJU
>;
>; This option determines if dates should be displayed according to
>; ISO 8601 format specification.
>;
>; For example; if the date February 1, 2000 should be displayed
>; as 2000-02-01
>;
>;
>* CE215 Do you want the default date format to be
>* ISO 8601:1988 compliant? [Y/N D:N]: N
>;
>; This option determines if dates should be displayed as two or four
>; digits. For example; if the year January 1, 2000 should be displayed
>; as 1-JAN-00, or 1-JAN-2000.
>;
>; If you specify Yes, the default date format will be;
>;
>; 1-JAN-2000,
>;
>; otherwise the default date format will be;
>;
>; 1-JAN-00
>;
>* CE216 Do you want the default date format to include
>* a four digit year? [Y/N D:N]: Y
>;
>; The IP11 industrial I/O subsystem is a combined software and
>; hardware package used for process control and monitoring in
>; the industrial and manufacturing environment. It consists
>; of an RSX device driver (IPDRV) and a set of FORTRAN-callable
>; interface routines, used to interface to a variety of hardware
>; I/O modules, including digital sense interrupt, change-of-state,
>; digital output, digital-to-analog converter, and analog-to-digital
>; converter modules.
>;
>; See the IP11 I/O Subsystem Software Installation Guide for
>; information on installing the software.
>;
>* CE264 Do you want IP11 industrial I/O subsystem support? [Y/N D:N]: N
>;
>; The Executive Debugging Tool (XDT) provides a subset of ODT-11
>; that runs as a part of the RSX-11M-PLUS Executive. This tool
>; allows interactive debugging of Executive modules, I/O drivers,
>; and interrupt service routines. Selection of this option also
>; includes consistency checks in the dynamic memory routines and
>; the loader.
>;
>; Note: If your system does not have Executive data space support,
>; XDT will reduce the size of primary pool. If your system does
>; have Executive data space support, XDT does not affect the size
>; of pool.
>;
>* CE270 Do you want to include XDT? [Y/N D:N]: N
>;
>; If the system crashes, a message is printed on the crash
>; notification device. This device must be a paper tape,
>; teletype, or line printer compatible device; that is, the
>; device must transmit a single byte at a time. Normally,
>; the crash notification device is the console terminal which
>; is always at the default CSR address given below.
>;
>* CE280 Enter the crash notification device CSR
>* address [O R:160000-177700 D:177564]:
>;
>; If the system crashes, you can cause all of memory to be written
>; onto a device for later analysis with the Crash Dump Analyzer (CDA).
>;
>; The device on which the crash dump is written must be selected from
>; the following list of devices and cannot be a fixed media device:
>;
>; DB: DM: MM:
>; DD: DR: MS:
>; DK: DT: MT:
>; DL: DU: MU:
>;
>; Note: Enter both the device and the logical unit number.
>; For example, MM0: or DL1:.
>;
>; Note: Enter XX: if you desire loadable DU:, DL:, MU:, MS: or MM:
>; crash driver support.
>;
>* CE290 On what device and unit do you want crash dumps
>* to be written? [S R:2-6]: DL0:
>;
>; Virtual disks allow the system to better manage large amounts
>; of storage. If you expect to hardware of software boot virtual
>; drives, select the maximum depth of virtual devices which will
>; be booted.
>;
>* CE300 Enter the initial number of virtual disks to be
>* included [D R:0.-16. D:2.]: 2
>;
>; The minimum supported memory size is 256K words for
>; an RSX-11M-PLUS system. The maximum memory size is 2044K words.
>;
>; This value is only used by VMR when it creates the system image
>; file. VMR does not allow you to create a partition or load
>; anything beyond the end of memory. When the system is booted,
>; your actual memory size is calculated and overrides the value
>; you enter here.
>;
>* CE310 Enter memory size (in K words) [D R:256.-2044. D:256.]: 256
>;
>; Some PDP-11/44 and PDP-11/84 systems are configured with UNIBUS
>; memory which disables some UNIBUS Map registers. If support for
>; UNIBUS memory is selected, then special UNIBUS memory partitons
>; are supported, and specific UMR resources reserved when UNIBUS
>; memory is detected on the system. If your system does not contain
>; any memory devices on the UNIBUS, this option will have no effect.
>;
>* CE315 Support UNIBUS memory occupying UNIBUS map address space? [Y/N D:N]:
N
>;
>; RSX-11M-PLUS requires a real-time clock for its operation. The
>; KW11-P programmable frequency clock, the KW11-L line frequency
>; clock, or the DL11-W line frequency clock/console interface may
>; be used.
>;
>* CE330 Is your system clock programmable (KW11-P)? [Y/N D:N]: N
>;
>; Line frequency is either 50 or 60 Hz. In the U.S.A., line frequency
>; is always 60 Hz.
>;
>* CE350 Is your line frequency 50 Hz? [Y/N D:N]: N
>;
>;
>;
>;=============================================================
>; Choosing Peripheral Configuration 12-DEC-2021 at 04:04
>;=============================================================
>;
>;
>;
>; The answers to the questions in this section are put in the saved
>; answer file [200,200]SYSGENSA2.CMD.
>;
>; You may now enter a comment describing the system you are building.
>; This comment is included in the SYSGENSA2 saved answer file for
>; documentation, and is printed out when the saved answer file is
>; later used as input.
>;
>; Enter a comment for inclusion in the SYSGENSA2 saved answer file.
>; The comment may contain more than one line. The "V" in the right
>; margin below marks the maximum line length. When you are done,
>; press RETURN in response to the prompt.
>; V
>* Comment [S R:0.-55.]: PDP-11/93 2*DEQNA 1*DPV11 LINE
>* Comment [S R:0.-55.]: SANYALNET LABS
>* Comment [S R:0.-55.]: HTTP://TUKLUSAN.DECSYSTEM.ORG/
>* Comment [S R:0.-55.]:
>;
>;
>; The RH11 and RH70 MASSBUS controllers are the controllers for
>; the following devices:
>;
>; DB: RP04, RP05, RP06, RM06 disks
>; DR: RM02, RM03, RM05, RM06, RM80, RP07 disks
>; DS: RS03, RS04 disks
>; EM: ML11 semiconductor disk emulator
>; MM: TM02, TM03 formatters, TE16, TU16, TU45, TU77 tapes
>;
>* CP0604 How many RH controllers do you have? [D R:0.-15. D:4.]: 0
>;
>;
>; DK: controller: RK11 devices: RK05, RK05F
>;
>; The RK11 cartridge disk drive and control is a complete mass
>; storage system for random access data storage. The system
>; includes a modular mass storage device utilizing removable
>; disk cartridges and a complete, easy-to-program, control unit.
>; A disk cartridge holds over 2.4 megabytes. The system is
>; expandable up to 8 drives per controller. An RK11 includes a
>; controller and the first disk drive. Optionally, the controller
>; can support up to four RK05F fixed platter drives each with twice
>; the capacity of the standard RK05 drive.
>;
>* CP2204 How many RK11 cartridge disk controllers do you have? [O D:0]: 1
>;
>; The RK05F disk pack drive unit contains twice the storage of
>; the standard removable RK05 drive. It uses one double density
>; fixed platter, and is interfaced to the RK11 controller in such
>; a manner as to appear identical to two standard RK05 drives. As
>; a result, it uses two physical unit numbers to interface to the
>; controller. In addition, the lowest of these unit numbers must
>; be even.
>;
>; Enter the total number of RK05F disk drives in your system. In
>; answering this question, enter the actual number of RK05F drives
>; that you have. Do NOT multiply the number by two.
>;
>* CP2208 How many RK05F fixed platter drives do you have? [O D:0]: 0
>;
>; The standard RK05 removable cartridge drive unit accepts the front
>; loading DECpack cartridge. Enter the total number of RK05 disk
>; drives in your system.
>;
>* CP2216 How many RK05 removable cartridge drives do you have? [O D:0]: 4
>;
>;
>; The physical unit number of a drive is the number shown on the
>; unit number plug (or other indicator) on the drive.
>;
>* CP2236 What is the physical unit number of DK0:? [O R:0-7 D:0]:
>;
>;
>* CP2236 What is the physical unit number of DK1:? [O R:0-7 D:1]:
>;
>;
>* CP2236 What is the physical unit number of DK2:? [O R:0-7 D:2]:
>;
>;
>* CP2236 What is the physical unit number of DK3:? [O R:0-7 D:3]:
>;
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP2268 Enter the vector address of DKA [O R:60-774 D:220]: 220
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP2272 What is its CSR address? [O R:160000-177700 D:177404]: 177404
>;
>; DK Configuration
>;
>; Physical Unit Number
>;
>; 0 1 2 3 4 5 6 7
>;
>; DKA DK0: DK1: DK2: DK3:
>;
>;
>;
>;
>; DM: controllers: RK611, RK711 devices: RK06, RK07
>;
>; The RK611/711 is a 3 data surface, removable, random access bulk
>; storage system with a storage capacity of 14 megabytes (RK06) or
>; 28 megabytes (RK07) per pack. The RK611/711 includes a control
>; unit and the first disk pack drive. The system is expandable up
>; to eight drives.
>;
>* CP2404 How many RK611/711 disk cartridge controllers do
>* you have? [O D:0]: 0
>;
>;
>; DL: controllers: RL11, RLV12 devices: RL01, RL02
>;
>; The RL11/RLV12 disk subsystem uses a medium performance, RL01/02
>; direct access drive with a single read/write head per surface.
>; Each drive provides 5.2 megabytes (RL01) or 10.4 megabytes (RL02)
>; of storage on a removable, top-loading cartridge. The subsystem
>; is expandable up to four drives.
>;
>* CP2604 How many RL11/RLV11 disk cartridge controllers do
>* you have? [O D:0]: 1
>;
>; Enter the total number of RL01 and RL02 disk drives in your system.
>;
>* CP2608 How many RL01/RL02 disk drives do you have? [D R:1.-63. D:1.]: 4
>;
>;
>; The physical unit number of a drive is the number shown on the
>; unit number plug (or other indicator) on the drive.
>;
>* CP2636 What is the physical unit number of DL0:? [O R:0-7 D:0]:
>;
>; Enter the drive type for this logical unit.
>;
>* CP2660 Is DL0: an RL01 or RL02? [S R:4-4 D:"RL02"]:
>;
>;
>* CP2636 What is the physical unit number of DL1:? [O R:0-7 D:1]:
>;
>* CP2660 Is DL1: an RL01 or RL02? [S R:4-4 D:"RL02"]:
>;
>;
>* CP2636 What is the physical unit number of DL2:? [O R:0-7 D:2]:
>;
>* CP2660 Is DL2: an RL01 or RL02? [S R:4-4 D:"RL02"]:
>;
>;
>* CP2636 What is the physical unit number of DL3:? [O R:0-7 D:3]:
>;
>* CP2660 Is DL3: an RL01 or RL02? [S R:4-4 D:"RL02"]:
>;
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP2668 Enter the vector address of DLA [O R:60-774 D:160]: 160
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP2672 What is its CSR address? [O R:160000-177700 D:174400]: 174400
>;
>; DL Configuration
>;
>; Physical Unit Number
>;
>; 0 1 2 3 4 5 6 7
>;
>; DLA DL0: DL1: DL2: DL3:
>;
>;
>;
>;
>; DP: controller: RP11 devices: RP02, RPR02, RP03
>;
>; The RP11 is a complete mass storage system using a magnetic
>; disk pack with 20 data surfaces and a moving read/write head.
>; The RP02 and RPR02 have a capacity of 20 megabytes. The RP03
>; has a capacity of 41 megabytes.
>;
>* CP2804 How many RP11 disk pack controllers do you have? [O D:0]: 0
>;
>; DU: controllers: RQZX1, RQDX1, RQDX2, RQDX3,
>; RUX50, RQC25, KDA50, UDA50
>;
>; devices: RX33, RX50, RD31, RD51, RD52, RD53, RD54,
>; RC25, RA60, RA70, RA71, RA72, RA80, RA81,
>; RA82, RA90, RA92, RZ23L, RZ24L, RZ26x, RZ29B
>;
>; The total of DU and MU controllers cannot be greater than 10.
>;
>; The MSCP disk controllers are:
>;
>; RQZX1, RQDX1, RQDX2, RQDX3, RUX50, RQC25, RUC25, KDA50, UDA50
>;
>; These intelligent disk controllers provide enhanced I/O optimization,
>; error correction capability, and, in some cases, dynamic bad block
>; handling.
>;
>* CP3004 How many MSCP disk controllers do you have? [D R:0.-10. D:0.]: 1
>;
>; The MSCP disk drives are:
>;
>; RX33, RX50, RD31, RD51, RD52, RD53, RD54
>; RC25, RA60, RA70, RA71, RA72, RA80, RA81
>; RA82, RA90, RA92, RZ23L, RZ24L, RZ26L
>;
>; The RX33 is a half-height 5.25-inch floppy diskette drive
>; with a formatted capacity of 1.2 megabytes.
>;
>; The RX50 is a full-height dual 5.25 inch floppy diskette drive
>; with a formatted capacity of 400 kilobytes for each diskette.
>; Count each RX50 (with two diskettes) as two drives.
>;
>; The RD31 is a half-height 5.25 inch fixed media, Winchester
>; technology disk with a formatted capacity of 21 megabytes.
>;
>;
>; The RD51 is a 5.25 inch fixed media, Winchester technology disk
>; with a formatted capacity of 10 megabytes.
>;
>; The RD52 is a 5.25 inch fixed media Winchester technology disk
>; with a formatted capacity of 31 megabytes.
>;
>; The RD53 is a 5.25 inch fixed media Winchester technology disk
>; with a formatted capacity of 71 megabytes.
>;
>; The RD54 is a 5.25 inch fixed media Winchester technology disk
>; with a formatted capacity of 159 megabytes.
>;
>; The RC25 contains a fixed and removable disk on the same spindle
>; with a formatted capacity of 25 megabytes each. Count each RC25
>; (with two disks: one fixed, one removable) as two drives.
>;
>; The RA60 is a removable media disk with a formatted capacity of
>; 205 megabytes.
>;
>; The RA70 is a fixed media, Winchester technology disk with a
>; formatted capacity of 280 megabytes.
>;
>; The RA80 is a fixed media, Winchester technology disk with a
>; formatted capacity of 121 megabytes.
>;
>; The RA81 is a fixed media, Winchester technology disk with a
>; formatted capacity of 456 megabytes.
>;
>; The RA82 is a fixed media, Winchester technology disk with a
>; formatted capacity of 622 megabytes.
>;
>; The RA90 is a fixed media, Winchester technology disk with a
>; formatted capacity of 1,216 megabytes.
>;
>; The RZ23L, RZ24L, and RZ26L drives are SCSI disks that attach
>; to the RQZX1 adapter.
>;
>; Enter the total number of physical MSCP disk drives in your system.
>; Do not include any logical partitions in the total.
>;
>* CP3008 How many physical MSCP disk drives do you have? [D D:1.]: 4
>;
>;
>; The physical unit number of a drive is the number shown on the
>; unit number plug (or other indicator) on the drive.
>;
>* CP3036 What is the physical unit number of DU0:? [O R:0-377 D:0]:
>;
>;
>* CP3036 What is the physical unit number of DU1:? [O R:0-377 D:1]:
>;
>;
>* CP3036 What is the physical unit number of DU2:? [O R:0-377 D:2]:
>;
>;
>* CP3036 What is the physical unit number of DU3:? [O R:0-377 D:3]:
>;
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP3068 Enter the vector address of DUA [O R:60-774 D:154]: 154
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP3072 What is its CSR address? [O R:160000-177700 D:172150]: 172150
>;
>;
>; MU: controllers: TK50, TU81, TU81E, TQ81E, RQZX1
>;
>; The TMSCP tape controllers are:
>;
>; TK50, TU81, TU81E, TQ81E, RQZX1
>;
>;
>* CP3404 How many TMSCP tape controllers do you have? [D R:0.-9. D:0.]: 1
>;
>;
>; The physical unit number of a drive is the number shown on the
>; unit number plug (or other indicator) on the drive.
>;
>* CP3436 What is the physical unit number of MU0:? [O R:0-377 D:0]: 0
>;
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP3468 Enter the vector address of MUA [O R:60-774 D:260]: 260
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP3472 What is its CSR address? [O R:160000-177700 D:174500]: 174500
>;
>; VF: Virtual disk/tape driver
>;
>;
>;
>; CR: controllers: CM11, CR11
>;
>; The CR11 card reader reads EIA standard 80-column punched data
>; cards at 300 cards per minute. It uses a riffle-air and a
>; vacuum-pick mechanism to move the cards. The CM11-F reads 80-
>; column mark-sense cards, which can have punched holes, at 285
>; cards per minute.
>;
>* CP4004 How many CM/CR11 card readers do you have? [O D:0]: 1
>;
>; If a task tries to access the card reader when the device is not
>; ready, a message saying the card reader is not ready is printed
>; on the console terminal. This message is repeated every n seconds,
>; where n is your response to this question, for as long as the card
>; reader remains not ready.
>;
>; Enter zero to disable this feature and suppress the messages.
>;
>* CP4008 Enter the number of seconds between
>* card reader-not-ready messages [D R:0.-255. D:15.]: 15
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP4068 Enter vector address of the next CM/CR11 [O R:60-774 D:230]: 230
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP4072 What is its CSR address? [O R:160000-177700 D:177160]: 177160
>;
>;
>; CT: controller: TA11 device: TU60
>;
>; The TA11 magnetic tape cassette system is a dual-drive,
>; reel-to-reel unit designed to replace paper tape. Its two
>; drives run non-simultaneously using proprietary Digital
>; Equipment Corporation Philips-type cassettes. The TA11
>; includes a control unit and a dual tape transport.
>;
>* CP4204 How many TA11 dual cassettes do you have? [O D:0]: 0
>;
>;
>; MS: controllers: TS11, TU80, TSV05, TK25
>;
>; The TS11, TU80, and TSV05 are 1/2 inch 1600 bpi tape subsystems
>; and the TK25 is a cartridge tape subsystem.
>;
>* CP4404 How many TS11/TU80/TSV05/TK25
>* magtape controllers do you have? [O D:0]: 1
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP4468 Enter vector address of the next
>* TS11/TU80/TSV05/TK25 [O R:60-774 D:224]: 224
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP4472 What is its CSR address? [O R:160000-177700 D:172522]: 172522
>;
>;
>; DT: controller: TC11 device: TU56
>;
>; The TC11 is a dual-unit bidirectional magnetic-tape transport
>; system for auxiliary data storage.
>;
>; The system stores information at fixed positions on magnetic
>; tape as in magnetic disk or drum storage devices, rather than
>; at unknown or variable positions as in conventional magnetic
>; tape systems.
>;
>; A DECtape system consists of up to 4 dual transports, a control
>; unit (which will buffer and control information for up to four
>; dual transports). A TC11 includes a control unit and the
>; first dual tape transport.
>;
>* CP4604 How many TC11 DECtape controllers do you have? [O D:0]: 0
>;
>;
>; DX: controller: RX11 device: RX01
>;
>; The RX11 is an industry compatible disk storage system for
>; flexible (floppy) disks. An RX11 is capable of controlling two
>; flexible disk drives each having a capacity of 256K bytes.
>;
>* CP4804 How many RX11 disk controllers do you have? [O D:0]: 0
>;
>;
>; DY: controller: RX211, RXV21 device: RX02
>;
>; The RX211 and RXV21 are single or double density flexible (floppy) disk
>; controllers with a storage capacity of 256K bytes (single density) or
>; 512K bytes (double density). One controller is capable of controlling
>; two drives.
>;
>* CP5004 How many RX211/RXV21 disk controllers do you have? [O D:0]: 1
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5068 Enter vector address of the next RX211/RXV21 [O R:60-774 D:264]: 264
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5072 What is its CSR address? [O R:160000-177700 D:177170]: 177170
>;
>; Enter the number of drives on this controller.
>;
>* CP5076 How many drives does DYA have? [D R:1.-2. D:2.]: 2
>;
>;
>; DD: controller: DL11 device: TU58
>;
>; The TU58 driver interfaces with the 3M DC-100A tape
>; cartridge drive and controller units via a parallel to ser-
>; ial DL11 converter at baud rates up to 9.6K. Data is
>; stored on the media on two parallel tracks recorded in the
>; same direction. The tape is preformatted into 2048 physical
>; records of 128 bytes each. Access to these physical records
>; is by groups of four corresponding to a standard DEC block
>; of 512 bytes.
>;
>* CP5204 How many TU58 controllers do you have? [O D:0]: 1
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5268 Enter vector address of next TU58 [O R:60-774 D:300]: 300
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5272 What is its CSR address? [O R:160000-177700 D:176500]: 176500
>;
>; Enter the number of drives on this controller.
>;
>* CP5276 How many drives does DDA have? [D R:1.-2. D:2.]: 2
>;
>;
>; LP: controllers: LA180, LN01, LP11, LS11, LV11
>; devices: LA180, LG01, LG02, LN01, LP01, LP02, LP04, LP05,
>; LP06, LP07, LP14, LP25, LP26, LP27, LS11, LV01
>;
>; The LP11 is a high-speed impact line printer with a rotating drum
>; or band. It is available in a variety of models, with and without
>; lowercase characters.
>;
>; The LS11 line printer is a medium-speed impact dot-matrix line
>; printer. It prints at a rate of 165 characters per second at
>; 10 characters per inch with up to 132 characters per line.
>;
>; The LA180 DECprinter is similar to the LS11 with the exception
>; that it prints at the rate of 180 characters per second.
>;
>; The LV11 is a high-speed electrostatic printer-plotter that prints
>; at a rate of 500 lines per minute. Only the print option is
>; supported under RSX-11M-PLUS.
>;
>* CP5404 How many LP/LS/LV/LG/LN/LA180 line printers do you have? [O D:0]: 1
>;
>; If a task tries to access the line printer when the device is not
>; ready, a message saying the line printer is not ready is printed
>; on the console terminal. This message is repeated every n seconds,
>; where n is your response to this question, for as long as the line
>; printer remains not ready.
>;
>; Enter zero to disable this feature and suppress the messages.
>;
>* CP5408 Enter the number of seconds between
>* line printer-not-ready messages [D R:0.-255. D:15.]: 15
>;
>; Enter the vector address for this line printer. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5468 Enter vector address of the next line
>* printer [O R:60-774 D:200]: 200
>;
>; Enter the CSR address for this line printer. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5472 What is its CSR address? [O R:160000-177700 D:177514]: 177514
>;
>; Here is a table of the valid line printer types and their
>; characteristics:
>;
>; printer # of lines per supports
>; type controller columns minute optimization
>;
>; LA180 LA180 132 150 no
>; LG01 LP11 132 240-600 no
>; LG02 LP11 132 240-600 no
>; LN01 LN01 132 600 NA
>; LP01 LP11-F/H 80 170-1110 yes
>; LP02 LP11-J/K 132 170-1110 yes
>; LP04 LP11-R/S 132 1110 yes
>; LP05 LP11-V/W 132 300 no
>; LP06 LP11-Y/Z 132 460-600 no
>; LP07 LP11-G 132 1200 no
>; LP14 LP11-C/D 132 660-900 no
>; LP25 LP11-A/B 132 215-300 no
>; LP26 LP11-E 132 445-600 no
>; LP27 LP11-U 132 800-1200 no
>; LS11 LS11 132 60-200 no
>; LV01 LV11 132 500 yes
>;
>; The printer type is used to set two characteristics in the UCB:
>;
>; o Column or buffer width
>;
>; This is settable in VMR or MCR with the SET /BUF command.
>;
>;
>; o Fast line printer support
>;
>; This is an optimization performed by the driver to eliminate
>; unnecessary print cycles. This characteristic is not settable
>; in VMR or MCR.
>;
>; If you specify the wrong printer type and the driver performs
>; the optimization for a printer that does not support it, you
>; will occasionally lose a line of a listing when the printer
>; is taken off line.
>;
>; If you specify the wrong printer type and the driver does not
>; perform the optimization for a printer that supports it, the
>; printer will run a little slower than it would with the
>; optimization, but there will be no other adverse effects.
>;
>; If you do not know the correct printer type for your printer, take
>; the default. This will give you a 132-column printer without fast
>; printer optimization. Once your system is running, you can change
>; the number of columns if necessary with the MCR SET command.
>;
>* CP5480 Enter line printer type for LPA [S R:4-5 D:"LP25"]:
>;
>; If this line printer has both uppercase and lowercase characters,
>; answer Yes to this question. If it only has uppercase characters,
>; answer No. Your answer determines the initial setting for
>; lowercase character conversion on this printer. You can change
>; this at any time by using the MCR SET /LOWER command.
>;
>* CP5484 Does LPA have lowercase characters? [Y/N D:N]:
>;
>;
>; MT: controllers: TM11, TMA11, TMB11 devices: TE10, TU10, TU10W, TS03
>;
>; The TM/TMA/TMB11 is a magnetic tape system ideally suited for
>; writing, reading, and storing large volumes of data and
>; programs in a serial manner. The system reads and writes in
>; industry-compatible format. TU10 drives support 10.5-inch reels
>; containing up to 2400 feet of tape upon which over 180 million
>; bits of data can be stored on high density 9-track tape. TS03
>; drives support 7-inch reels containing up to 600 feet of tape in
>; high density 9-track format. TU10W drives are compatible with
>; TU10 drives except they operate only on 800 bpi, 9-track tape.
>;
>* CP5604 How many TM/TMA/TMB11 magtape controllers do you have? [O D:0]: 0
>;
>;
>; PP: controller: PC11
>;
>; The PC11 is a high speed paper tape reader/punch that is
>; capable of reading eight-hole, unoiled, perforated paper tape at
>; 300 characters per second, and punching tape at 50 characters
>; per second.
>;
>* CP5804 How many PC11 paper tape reader/punches do you have? [O D:0]: 1
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5868 Enter vector address of the next PC11 [O R:60-774 D:70]: 74
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP5872 What is its CSR address? [O R:160000-177700 D:177550]: 177554
>;
>;
>; PR: controller: PR11
>;
>; The PR11 is a high speed paper tape reader that is capable of
>; reading eight-hole unoiled perforated paper tape at 300
>; characters per second.
>;
>;
>; Exclude the number of PC11s from your answer to this question.
>;
>* CP6004 How many PR11 paper tape readers do you have? [O D:0]: 1
>;
>; Enter the vector address for this controller. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP6068 Enter vector address of the next PR11 [O R:60-774]: 70
>;
>; Enter the CSR address for this controller. This CSR address can
>; be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP6072 What is its CSR address? [O R:160000-177700]: 177550
>;
>;
>; LA: controller: LPA11
>;
>; The LPA11 lab peripheral accelerator is a real-time subsystem which
>; interfaces to the PDP-11 family of computers. The system consists
>; of the LPA11, up to 2 A/D converters, a programmable real-time
>; clock, a D/A converter, and up to five digital I/O modules.
>;
>* CP6204 How many LPA11 lab subsystems do you have? [D R:0.-16. D:0.]: 0
>;
>;
>; TT: controllers: DL11, DLV11 controller mnemonic: YL
>;
>; The DL11/DLV11 series of asynchronous single line interfaces handle
>; full or half-duplex communication between a wide variety of serial
>; communication channels and a PDP-11 computer.
>;
>; SYSGEN automatically sets up the data bases for all mandatory
>; DL11/DLV11s. (For each processor in the system, there must be a
>; DL11/DLV11; these are mandatory.) Answer the next question with
>; the number of additional DL11/DLV11s in your system.
>;
>; Note: Enter only the number of DL11s used as terminal interfaces.
>; Do not include any DL11s used as controlers for the TU58 DECtape II.
>;
>* CP6804 Enter number of additional DL11/DLV11 line interfaces [O D:0]: 2
>;
>; The DL11/DLV11 has the ability to maintain a full-duplex connection
>; through a BELL 103A type modem. Modem support requires added code
>; in the terminal driver. As a result, it should be selected only if
>; needed.
>;
>* CP6820 Do any of the DL11/DLV11 lines require modem support? [Y/N D:N]: N
>;
>; The terminal types supported by RSX-11M-PLUS SYSGEN are:
>;
>; ASR33 LA12 VT05B
>; ASR35 LA30P VT50
>; LA30S VT52
>; DTC01 LA34 VT55
>; LA36 VT61
>; KSR33 LA38 VT100
>; LA50 VT101
>; LA100 VT102
>; LA120 VT105
>; LA180S VT125
>; LA210 VT131
>; LN03 VT132
>; PC3xx VT2xx
>;
>* CP6832 Enter terminal type for YLA [S R:4-6 D:"LA120"]:
>;
>; Additional vectors are assigned from the floating vector space
>; starting at 300. The vector address can be changed after the
>; SYSGEN by using the VMR CON SET command.
>;
>* CP6868 Enter vector address of YLB [O R:300-770]: 310
>;
>; Additional CSRs are assigned in the range 176000 - 176770. The
>; CSR address can be changed after the SYSGEN by using the VMR CON
>; SET command.
>;
>* CP6872 What is its CSR address? [O R:160000-177700]: 160010
>;
>; The terminal types supported by RSX-11M-PLUS SYSGEN are:
>;
>; ASR33 LA12 VT05B
>; ASR35 LA30P VT50
>; LA30S VT52
>; DTC01 LA34 VT55
>; LA36 VT61
>; KSR33 LA38 VT100
>; LA50 VT101
>; LA100 VT102
>; LA120 VT105
>; LA180S VT125
>; LA210 VT131
>; LN03 VT132
>; PC3xx VT2xx
>;
>* CP6832 Enter terminal type for YLB [S R:4-6 D:"LA120"]:
>;
>; Additional vectors are assigned from the floating vector space
>; starting at 300. The vector address can be changed after the
>; SYSGEN by using the VMR CON SET command.
>;
>* CP6868 Enter vector address of YLC [O R:300-770]: 320
>;
>; Additional CSRs are assigned in the range 176000 - 176770. The
>; CSR address can be changed after the SYSGEN by using the VMR CON
>; SET command.
>;
>* CP6872 What is its CSR address? [O R:160000-177700]: 160020
>;
>; The terminal types supported by RSX-11M-PLUS SYSGEN are:
>;
>; ASR33 LA12 VT05B
>; ASR35 LA30P VT50
>; LA30S VT52
>; DTC01 LA34 VT55
>; LA36 VT61
>; KSR33 LA38 VT100
>; LA50 VT101
>; LA100 VT102
>; LA120 VT105
>; LA180S VT125
>; LA210 VT131
>; LN03 VT132
>; PC3xx VT2xx
>;
>* CP6832 Enter terminal type for YLC [S R:4-6 D:"LA120"]:
>;
>;
>; TT: controller: DH11 controller mnemonic: YH
>;
>; The DH11 multiplexer connects the PDP-11 with 16 asynchronous
>; serial communications lines operating with individually
>; programmable parameters. These parameters are:
>;
>; transmitter speed (baud)
>; receiver speed (baud)
>;
>* CP7004 Enter number of DH11 asynchronous line
>* multiplexers [D R:0.-16. D:0.]: 0
>;
>;
>; TT: controller mnemonic: YV
>;
>; controllers: DHU11, DHV11, CXA16, CXB16, CXY08
>;
>;
>; These multiplexers connect the PDP-11 with up to
>; 16 (DHU11, CXA16, CXB16) or 8 (DHV11, CXY08)
>; asynchronous serial communications lines operating with
>; individually programmable parameters. These parameters are:
>;
>; transmitter speed (baud)
>; receiver speed (baud)
>;
>; Modem control is available with the DHU11, DHV11 and CXY08.
>; The CXA16 and CXB16 do not support modem control. Use the VMR
>; or MCR SET /REMOTE commands in order to enable dialup lines.
>;
>* CP7104 Enter number of DHU11/DHV11/CXA16/CXB16/CXY08 (YV:-type)
>* asynchronous line multiplexers [D R:0.-32. D:0.]: 0
>;
>;
>; TT: controller: DJ11 controller mnemonic: YJ
>;
>; The DJ11 is a multiplexed interface between 16 asynchronous
>; serial data-communications channels and the PDP-11 UNIBUS. The
>; DJ11 is a unit whose character formats and operating speeds are
>; jumper or strap selectable in groups of four lines.
>;
>* CP7204 Enter number of DJ11 asynchronous line
>* multiplexers [D R:0.-16. D:0.]: 0
>;
>;
>; TT: controllers: DZ11, DZQ11, DZV11, DFA01 controller mnemonic: YZ
>;
>; The DZ11/DZQ11/DZV11/DFA01 multiplexers connect the PDP-11 with up to
>; 8 asynchronous serial communications lines operating with individually
>; programmable parameters. These parameters are:
>;
>; Transmitter speed / Receiver speed (baud)
>;
>* CP7404 Enter number of DZ11/DZQ11/DZV11/DFA01 asynchronous line
>* multiplexers [D R:0.-32. D:0.]: 1
>;
>; The DZ11/DZQ11/DZV11 has the ability to maintain a full-duplex connection
>; through a BELL 103A type modem. Modem support requires added code in the
>; terminal driver and increases system overhead. As a result, it should be
>; selected only if needed.
>;
>* CP7420 Do any of the DZ lines require modem support? [Y/N D:N]: N
>;
>; The vector address for the DZ11/DZQ11/DZV11 is assigned from the floating
>; vector space starting at 300. The vector address can be changed after
>; the SYSGEN by using the VMR CON SET command.
>;
>* CP7468 Enter vector address of YZA [O R:300-770]: 330
>;
>; The CSR address for the DZ11/DZQ11/DZV11 is assigned from the floating
>; address space starting at 160010. The CSR address can be changed
>; after the SYSGEN by using the VMR CON SET command.
>;
>* CP7472 What is its CSR address? [O R:160000-177700]: 160030
>;
>; Enter the number of lines on this controller.
>;
>* CP7480 How many lines does YZA have? [D R:1.-8. D:8.]: 8
>;
>; The terminal types supported by RSX-11M-PLUS SYSGEN are:
>;
>; ASR33 LA12 VT05B
>; ASR35 LA30P VT50
>; LA30S VT52
>; DTC01 LA34 VT55
>; LA36 VT61
>; KSR33 LA38 VT100
>; LA50 VT101
>; LA100 VT102
>; LA120 VT105
>; LA180S VT125
>; LA210 VT131
>; LN03 VT132
>; PC3xx VT2xx
>;
>* CP7484 Enter terminal type for YZA [S R:4-6 D:"VT100"]:
>;
>; SYSVMR.CMD, the VMR command file which creates your system image file,
>; contains commands that set the characteristics for each terminal as
>; follows:
>;
>; Terminal type: as you specified for the controller
>; Buffer width: 80
>; Speed: 300/300 for hardcopy terminals
>; 9600/9600 for CRTs
>; Lower to upper-
>; case conversion: No for hardcopy terminals
>; Yes for CRTs
>;
>; If you wish to change these characteristics for your terminals, SYSGEN
>; will allow you to edit SYSVMR.CMD.
>;
>;
>;
>; Intercomputer communication devices consist of the following:
>;
>; PCL11 full-duplex DMA interprocessor communications
>; device
>; DMC11/DMR11 high-speed synchronous serial line interface
>; DUP11 synchronous serial line interface
>; DEUNA Ethernet communications controller
>;
>; Note: Do NOT include any devices which will be used with DECnet.
>; Those devices should be included when you do your NETGEN.
>;
>* CP7604 Do you have any intercomputer communication devices? [Y/N D:N]: Y
>;
>;
>; LR: (receiver) controller: PCL11
>; LT: (transmitter)
>;
>; The PCL11 is a full-duplex DMA interprocessor communication
>; device. It transfers at up to 500,000 bytes per second
>; between two processors and can support up to 16 processors on
>; the time division multiplexed bus. Transmitters and receivers
>; are serviced by the separate drivers LTDRV and LRDRV.
>;
>* CP7804 How many PCL11 receiver/transmitters do you have? [O D:0]: 0
>;
>;
>; XM: controllers: DMC11, DMR11
>;
>; The DMC11/DMR11 is a full-duplex, serial communications link which
>; implements the DDCMP line protocol using a high speed microprocessor.
>; Data messages are transferred with minimal processor overhead using
>; the DMA facilities of the PDP-11.
>;
>* CP8204 How many DMC11/DMR11 synchronous line interfaces do
>* you have? [O D:0]: 0
>;
>;
>; XW: controller: DUP11
>;
>; The DUP11 provides a double-buffered program interface between
>; a PDP-11 and a serial synchronous line.
>;
>; The DUP11 provides a flexible interface in that the programmer
>; can specify the sync and character size. Modem control
>; capability allows the use of the DUP11 in switched or dedicated
>; applications. The interface provides strip sync and idle sync
>; features to simplify programming and remove processor overhead.
>;
>* CP8404 How many DUP11 synchronous line interfaces do you have? [O D:0]: 1
>;
>; Enter the vector address for this DUP11. The vector address for
>; the DUP11 is assigned from the floating vector space starting at
>; 300. This vector address can be changed after the SYSGEN by using
>; the VMR CON SET command.
>;
>* CP8468 Enter vector address of the next DUP11 [O R:300-774]: 320
>;
>; Enter the CSR address for this DUP11. The CSR address for the
>; DUP11 is assigned from the floating address space starting at
>; 160010. This CSR address can be changed after the SYSGEN by
>; using the VMR CON SET command.
>;
>* CP8472 What is its CSR address? [O R:160000-177700]: 17760310        160310
>;
>; Answer Yes if this is a half-duplex line.
>;
>* CP8480 Is it a half-duplex line? [Y/N D:N]: N
>;
>; Enter the number of sync character required in a sync leader.
>;
>* CP8484 How many sync characters are required in a sync
>* leader? [D R:3.-14.]:
AT.T0 -- Value not in range
>* leader? [D R:3.-14.]: 3
>;
>;
>; XE: controller: DEUNA
>;
>; The Digital Equipment UNIBUS Network Adapter (DEUNA) is a data
>; communications controller used to interface PDP-11 family computers
>; to the Ethernet local area network.
>;
>* CP8504 How many DEUNA Ethernet controllers do you have? [O R:0-1 D:0]: 1
>;
>; Enter the vector address for this DEUNA. This vector address
>; can be changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP8568 Enter vector address of the next DEUNA [O R:60-774 D:120]: 120
>;
>; Enter the CSR address for this DEUNA. This CSR address can be
>; changed after the SYSGEN by using the VMR CON SET command.
>;
>* CP8572 What is its CSR address? [O R:160000-177700 D:174510]: 74440     174440
>;
>;
>; Enter device mnemonics for any user-supplied drivers. The driver
>; source files must reside in [11,10] and be named ddDRV.MAC and
>; ddTAB.MAC where dd is the device mnemonic.
>;
>; You may enter the mnemonics on more than one line. When you have
>; listed all the drivers, press RETURN when asked for the device
>; mnemonic.
>;
>; The device mnemonic must not include a colon.
>;
>* CP9604 Enter device mnemonics for user-supplied drivers [S]:
>;
>;
>; If you will be adding other devices after this SYSGEN or have
>; included user-supplied devices, you will want to set the highest
>; interrupt vector address high enough to accommodate the vectors for
>; those devices.
>;
>; The highest vector among the devices you specified in this SYSGEN
>; is 374(octal). This is the default response for this question.
>;
>* CP9632 What is the highest interrupt vector
>* address? [O R:374-774 D:374]: 774
>;
>;
>;
>;================================================================
>; Assembling the Executive and Drivers 12-DEC-2021 at 04:43
>;================================================================
>;
>;
>;
>; The answers to the questions in this section are put in the saved
>; answer file [200,200]SYSGENSA1.CMD.
>;
>PIP RSXMC3.MAC=RSXMC1.MAC,RSXMC2.MAC
>PIP RSXMC.MAC=RSXMC3.MAC,RSXMC0.MAC
>;
>; Copy the files created by the Executive options and peripheral
>; configuration sections into the correct directories.
>;
>SET /UIC=[1,24]
>PIP [11,10]/NV=[200,200]RSXMC.MAC
>PIP [11,10]/NV=[200,200]SYSTB.MAC
>PIP [11,24]/NV=[200,200]RSXASM.CMD
>PIP [11,24]/NV=[200,200]DRIVERS.ASM
>;
>;
>; Assembly listings of the Executive modules and the drivers can be
>; generated and stored in a file or printed directly.
>;
>; Generating listings is time-consuming and they are not normally
>; needed, so we recommend you answer No to this question.
>;
>* AE010 Do you want assembly listings of the Executive and
>* drivers? [Y/N D:N]:
>;
>ASN NL:=LS:
>;
>;
>; If you are building a specialized system you may wish to edit
>; some of the files which SYSGEN produced before the Executive
>; and drivers are assembled.
>;
>* AE030 Do you wish to pause to edit any files before
>* assembling? [Y/N D:N]:
>;
>SET /UIC=[11,24]
>;
>; Now we assemble the Executive and resident drivers.
>;
>PIP *.OBJ;*/DE/NM,*.TTY;*
>;
>TIME
04:44:28 12-DEC-2021
>;
>MAC @RSXASM
>;
>; Now we assemble the loadable drivers.
>;
>TIME
04:56:54 12-DEC-2021
>;
>MAC @DRIVERS.ASM
>;
>TIME
05:08:57 12-DEC-2021
>;
>; Now we build the concatenated object module file for the Executive.
>;
>PIP RSX11M.OBS=*.OBJ
>PIP TTDRV.OBS=*.TTY
>;
>SET /UIC=[200,200]
>PIP /NV=[11,10]RSXMC.MAC
>;
>SET /UIC=[1,24]
>PIP RSXBLD.CMD/PU/NM
>PIP RSX11M.OLB;*/DE/NM
>PIP [200,200]RSXMC.MAC/PU/NM
>;
>; Now we build the Executive library.
>;
>LBR RSX11M/CR:256.::256./-EP=[11,24]RSX11M.OBS
>PIP [11,24]RSX11M.OBS;*,*.OBJ;*/DE
>;
>; Now we build the terminal driver library.
>;
>LBR TTDRV/CR:40.:392.:128.=[11,24]TTDRV.OBS
>PIP [11,24]TTDRV.OBS;*,*.TTY;*/DE
>SET /UIC=[200,200]
>;
>;
>;
>;==============================================================
>; Building the Executive and Drivers 12-DEC-2021 at 05:09
>;==============================================================
>;
>;
>;
>; The answers to the questions in this section are put in the saved
>; answer file [200,200]SYSGENSA1.CMD.
>;
>;
>; There is a system image file, RSX11M.SYS, in UFD [1,54] on your
>; target system disk. This is probably an old system. You may want
>; to move the files belonging to this older system to another directory
>; before SYSGEN puts the new system's files in [1,54].
>;
>* BE010 Do you want to move the old system in [1,54] to
>* another directory? [Y/N D:N]: N
>;
>; Allocate space to be used later for the system image file.
>;
>SET /UIC=[1,54]
>PIP RSX11M.TMP/CO/BL:1026.=NL:
>;
>SET /UIC=[200,200]
>;
>SET /UIC=[1,24]
>SET /UIC=[200,200]
>SET /UIC=[1,54]
>PIP SYSVMR.CMD=[200,200]SYSVMR.CMD,VMRTTY.CMD
>;
>SET /UIC=[200,200]
>;
>; At this point, you can edit:
>;
>; the Executive task-build command files in [200,200]
>; the driver task-build command files in [200,200]
>; the privileged task task-build command files in [1,24]
>; SYSVMR.CMD in [1,54]
>;
>; In most cases there is no need to edit the task-build command files.
>; However, you may want to tailor SYSVMR for your system.
>;
>* BE030 Do you want to pause to edit any files before
>* task-building? [Y/N D:N]: N
>;
>SET /UIC=[1,24]
>PIP [1,24]/NV/NM=[200,200]RSXBLD.CMD,RSX11M,DSP11M,LDR11M
>PIP [1,24]/NV=[200,200]DIR11M.CMD,DR211M,DIRCOM,DR2COM,DIR
>PIP [1,24]/NV=[200,200]DR311M.CMD,DR411M,DR3COM,DR4COM
>PIP [1,24]/NV=[200,200]VEC11M.CMD,DCM11M,VECCOM
>;
>; Now we build the Executive.
>;
>TIME
05:10:14 12-DEC-2021
>;
>TKB @RSXBLD
>;
>; Now we build the loadable drivers
>;
>TIME
05:13:35 12-DEC-2021
>;
>TKB @[200,200]DRIVERS.BLD
>;
>TIME
05:14:36 12-DEC-2021
>SET /UIC=[200,200]
>;
>;
>;
>;=========================================================
>; Building the Privileged Task 12-DEC-2021 at 05:14
>;=========================================================
>;
>;
>;
>; The answers to the questions in this section are put in the saved
>; answer file [200,200]SYSGENSA1.CMD.
>;
>;
>; Maps of the privileged tasks can be generated and stored in a file
>; or printed directly.
>;
>; Maps of the privileged tasks are not normally needed, so we
>; recommend you answer No to this question.
>;
>* BP040 Do you want the maps of the privileged tasks? [Y/N D:N]:
>;
>ASN NL:=MP:
>;
>SET /UIC=[1,24]
>;
>TIME
05:14:42 12-DEC-2021
>;
>TKB @SAVBLD
>;
>TIME
05:15:22 12-DEC-2021
>;
>ASN LB:=OU:
>SET /UIC=[200,200]
>;
>;
>;
>;============================================================
>; Rebuilding Supplied System Tasks 12-DEC-2021 at 05:15
>;============================================================
>;
>;
>;
>; The answers to the questions in this section are put in the saved
>; answer file [200,200]SYSGENSA3.CMD.
>;
>;
>; All nonprivileged and vectored privileged system tasks are supplied
>; already task-built and can be found in the library UFD on the target
>; system disk. It is not normally necessary to rebuild these supplied
>; system tasks although you may wish to do so, for example if one of
>; them has been patched.
>;
>* BN010 Do you want to rebuild any system tasks? [Y/N D:N]:
>;
>;
>;
>;==========================================================
>; Creating the System Image File 12-DEC-2021 at 05:15
>;==========================================================
>;
>;
>SET /UIC=[1,54]
>;
>PIP RSX11M.TMP;*/DE/NM
>;
>PIP RSX11M.SYS/CO/NV/BL:1026.=RSX11M.TSK
>;
>ASN LB:=SY:
>;
>; Utility tasks stay in utility UFD [3,54].
>;
>; RSX11M.TSK is a backup copy of the Executive you just built.
>;
>;
>; VMR will now initialize the system.
>;
>VMR @SYSVMR
Loading Executive data space
Data space loading completed
VMR -- *DIAG*-Installed tasks or commons may no longer fit in partition
SET /TOP=SYSPAR:-*
VMR -- *DIAG*-Loadable driver larger than 4K
LOA TT:
VMR -- *FATAL*-No ICB pool space for CPU A
LOA XW:
>;
>; When you are finished with SYSGEN, software boot in your target
>; system. Set the date and time, and save the system without any
>; switches to verify that the system is working. Then save the
>; system again, this time with the /WB switch to make it hardware
>; bootable.
>;
>; The optional SAVE switches are:
>;
>; /WB writes the boot block
>; /SFILE="filename" uses "filename" as the startup file
>; /MOU="mount-switches" specifies mount switches to be used
>; when the system volume is mounted
>;
>; For example:
>;
>; >BOOT [1,54]RSX11M.SYS
>; RSX-11M-PLUS V3.0 BL24
>;
>; >
>; TIM 19-APR-85 12:00:00
>; >SAV
>;
>; RSX-11M-PLUS V3.0 BL24 256.K System:"MJTOAD"
>; >RED DB:=SY:
>; >RED DB:=LB:
>; >RED DB:=SP:
>; >MOU DB:"RSX11MPBL24"
>; >@DB:[1,2]STARTUP
>; .
>; .
>; .
>; >* Please enter time and date (HH:MM MM/DD/YY) [S]: ^Z
>; >@ <EOF>
>; >SAV /WB
>;
>; RSX-11M-PLUS V3.0 BL24 256.K System:"MJTOAD"
>; >RED DB:=SY:
>; >RED DB:=LB:
>; >RED DB:=SP:
>; >MOU DB:"RSX11MPBL24"
>; >@DB:[1,2]STARTUP
>; .
>; .
>; .
>; >* Please enter time and date (HH:MM MM/DD/YY) [S]: 12:01 4/19/85
>; >TIME 12:01 4/19/85
>; >ACS SY:/BLKS=1024.
>; >CON ONLINE ALL
>; .
>; .
>; .
>; >@ <EOF>
>; >SET /UIC=[1,54]
>; >PIP [2,54]*.*;*/DE
>; >
>;
>; You may wish to edit [1,2]STARTUP.CMD and [1,2]QMGSTART.CMD
>; to reflect your desired initialization operations.
>;
>SET /UIC=[200,200]
>;
>REM MACT0
>REM PIPT0
>REM LBRT0
>REM TKBT0
>REM VMRT0
>;
>; End of SYSGEN
>;
>TIME
05:15:52 12-DEC-2021
>;
>ASN =
>;
>@ <EOF>
>
>
>RUN $SHUTUP
RSX-11M-PLUS Shut down program
Enter minutes to wait before shutdown: 0
Reason for shutdown (<CR> for none):SYSGEN COMPLETE
OK to shutdown? [Y/N]: Y
All further logins are disabled
12-DEC-2021 05:16 System is now shutting down -- RSX11M
Reason for shutdown: SYSGEN COMPLETE
SET /COLOG=OFF
>
QUE /STO:QMG
>
STOP/ACCOUNTING SHUTUP
05:16:26 SYSLOG -- 47. Exiting
>
@LB:[1,2]SHUTUP
>VCP DISCONNECT /ALL
>ncp set cir ip-0-0 sta off
NCP -- Set failed, invalid identification format, Circuit
>ncp cle lin ip-0-0 all
NCP -- Clear failed, invalid identification format, Line
>ifc rem tcp port 7
?IFC REM ?
CCL -- Syntax error, unknown or ambiguous command
>ifc rem tcp port 9
?IFC REM ?
CCL -- Syntax error, unknown or ambiguous command
>ifc rem tcp port 13
?IFC REM ?
CCL -- Syntax error, unknown or ambiguous command
>ifc rem tcp port 17
?IFC REM ?
CCL -- Syntax error, unknown or ambiguous command
>ifc rem tcp port 80
?IFC REM ?
CCL -- Syntax error, unknown or ambiguous command
>ifc rem tcp port 113
?IFC REM ?
CCL -- Syntax error, unknown or ambiguous command
>ifc rem tcp port 21
?IFC REM ?
CCL -- Syntax error, unknown or ambiguous command
>ifc set if0: sta clo
?IFC SET ?
CCL -- Syntax error, unknown or ambiguous command
>ifc set if1: sta clo
?IFC SET ?
CCL -- Syntax error, unknown or ambiguous command
>ifc stop
?IFC STOP?
CCL -- Syntax error, unknown or ambiguous command
>abo ethacp
ABO -- Task not in system
>rem ethacp
REM -- Task not in system
>rem ...net
REM -- Task not in system
>rem ...ifc
REM -- Task not in system
>rem ...pin
REM -- Task not in system
>rem ...ftp
REM -- Task not in system
>rem rwhod
REM -- Task not in system
>rem tftpd
REM -- Task not in system
>rem tft
REM -- Task not in system
>rem trt
REM -- Task not in system
>rem tel
REM -- Task not in system
>rem tcpgen
REM -- Task not in system
>con off if0:
CON -- Command execution error.
Invalid device or unit
OFFLINE IF0:
>con off if1:
CON -- Command execution error.
Invalid device or unit
OFFLINE IF1:
>con off ip:
CON -- Command execution error.
Invalid device or unit
OFFLINE IP0:
>con off ud:
CON -- Command execution error.
Invalid device or unit
OFFLINE UD0:
>con off tc:
CON -- Command execution error.
Invalid device or unit
OFFLINE TC0:
>unl if:/vec
UNL -- Device IF0: not in system
>unl ip:/vec
UNL -- Device IP0: not in system
>unl ud:/vec
UNL -- Device UD0: not in system
>unl tc:/vec
UNL -- Device TC0: not in system
>; The CEX will be unloaded since all CEX products have been unloaded.
>SCP STOP SIL (I)
>LCP STOP
LCP -- Process not started
>NCP CLEAR SYS
>REM NTINIT
>REM NTL...
>REM EVC...
>REM ...EVF
>REM ...NCP
>REM LOO...
>REM LOO$$$
>REM MLD...
>SET /SYSUIC=[5,54]
>UNL NM:/VEC
>SET /SYSUIC=[1,54]
>REM NMVACP
>REM NETACP
>REM NIC$$$
>REM EVR$$$
>REM ...NTD
>REM NTD...
>REM LIN$$$
>REM MIR$$$
>REM NVP...
>REM DLL$$$
>REM DUM$$$
>REM ...CCR
>REM RCP1..
>REM RCP2..
>REM HLD...
>REM ...NFT
>REM ...FTS
>REM FTSDEQ
>REM FAL$$$
>REM FALLOG
>REM .CMTS.
>CLI /ELIM=RMTACP
>REM RMTACP
>REM ...RMT
>REM RMHACP
>REM LSN$$$
>REM NCT...
>REM ...TLK
>REM ...PHO
>REM PHO$$$
>REM TCL...
>REM ...SCP
>SET /SYSUIC=[5,54]
>UNL NN:/VEC
>SET /SYSUIC=[1,54]
>REM NT$NNS
>REM ...LCP
>SET /SYSUIC=[5,54]
>UNL HT:/VEC
>SET /SYSUIC=[1,54]
>;
>; Inserting Nuclear control rods into the reactor for IMMEDIATE SHUTDOWN!
>;
>RUN LB:[3,54]TIMWRT
INS -- Task name already in use
>@ <EOF>
>
ELI /NOLOG
>
ACS DU0:/BLKS=0.
ACS -- Checkpoint file now inactive
>
DMO DU0:/DEV/LOCK=V
DMO -- System disk being dismounted
DMO -- SYSTEM dismounted from DU0: *** Final dismount initiated ***
05:16:40 *** DU0: -- Dismount complete
>
DMO DU1:/DEV/LOCK=V
DMO -- SYSTEM dismounted from DU1: *** Final dismount initiated ***
05:16:45 *** DU1: -- Dismount complete
>
SHUTUP operation complete
HALT instruction, PC: 126130 (CLRB @#177776)
Eth: closed vde:/tmp/vde-dnet.ctl
Eth: closed vde:/tmp/vde-ip.ctl
Log file closed
/home/linuxuser/simh.run/pdp11-93/bin $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment