1
0
mirror of https://github.com/PDP-10/its.git synced 2026-05-22 13:30:12 +00:00

Update to new PDP-6 emulator.

This commit is contained in:
Lars Brinkhoff
2026-05-01 07:10:40 +02:00
parent df638bb18c
commit 2fa044eac3
5 changed files with 23 additions and 7 deletions

View File

@@ -103,6 +103,18 @@ arpanet() {
started "Local NCP daemon" "$!"
}
pdp6() {
DIR=$PWD
(sleep 3; cd tools/blincolnlights/vpanel_pdp6; exec ./panel_pdp6) &
started "PDP-6 panel" "$!"
(sleep 5; cd tools/blincolnlights/netmem_cache; exec ./netmem_cache > $DIR/netmem.log) &
started "PDP-6 shared memory cache" "$!"
(sleep 7; cd tools/blincolnlights/pdp6; exec ./pdp6 > $DIR/pdp6.log 2>&1) &
started "PDP-6" "$!"
(sleep 9; cd tools/blincolnlights/pdp_periph; exec ./pdp_periph > $DIR/periph.log) &
started "PDP-6 peripherals" "$!"
}
help() {
cat <<EOF
This start script takes several command line arguments:
@@ -121,6 +133,7 @@ tek - Start a Tektronix 4010 emulator.
cscope - Enable the color scope.
chaosnet - Start a local Chaosnet.
arpanet - Start ARPANET.
pdp6 - Start PDP-6.
EOF