Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ubuntu-24.04]
emulator: [simh, klh10, pdp10-ka, pdp10-kl, pdp10-ks, simhv3]
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@
[submodule "tools/tv11"]
path = tools/tv11
url = https://github.com/aap/pdp11
[submodule "tools/pdp6"]
path = tools/pdp6
url = https://github.com/aap/pdp6
[submodule "tools/vt05"]
path = tools/vt05
url = https://github.com/aap/vt05
Expand All @@ -49,3 +46,6 @@
[submodule "tools/ncp"]
path = tools/ncp
url = https://github.com/larsbrinkhoff/linux-ncp
[submodule "tools/blincolnlights"]
path = tools/blincolnlights
url = https://github.com/aap/blincolnlights
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ BINIGNORE=-e '^(ka10|kl10|ks10|minsys)$$'
SRCIGNORE=-e '^(system|midas)$$'

SUBMODULES = dasm itstar klh10 mldev simh sims supdup cbridge \
tapeutils tv11 pdp6 vt05 tek4010 chaosnet-tools ncp
tapeutils tv11 blincolnlights vt05 tek4010 chaosnet-tools ncp

# These files are used to create bootable tape images.
RAM = bin/ks10/boot/ram.262
Expand All @@ -100,7 +100,7 @@ MAGFRM=tools/dasm/magfrm
GT40=tools/simh/BIN/pdp11 $(OUT)/bootvt.img
TV11=tools/tv11/tv11
XGP11=tools/tv11/xgp11
PDP6=tools/pdp6/emu/pdp6
PDP6=tools/blincolnlights/pdp6/pdp6
KLFEDR=tools/dasm/klfedr
DATAPOINT=tools/vt05/dp3300
VT52=tools/vt05/vt52
Expand Down Expand Up @@ -429,7 +429,10 @@ $(XGP11):
$(MAKE) -C tools/tv11 xgp11 CFLAGS=-O3

$(PDP6):
$(MAKE) -C tools/pdp6/emu
$(MAKE) -C tools/blincolnlights/pdp6
$(MAKE) -C tools/blincolnlights/vpanel_pdp6
$(MAKE) -C tools/blincolnlights/pdp_periph
$(MAKE) -C tools/blincolnlights/netmem_cache

$(DATAPOINT):
$(MAKE) -C tools/vt05 dp3300
Expand Down
13 changes: 13 additions & 0 deletions build/pdp10-ka/start
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand Down
1 change: 1 addition & 0 deletions tools/blincolnlights
Submodule blincolnlights added at 660f37
2 changes: 1 addition & 1 deletion tools/cbridge
Submodule cbridge updated 109 files
2 changes: 1 addition & 1 deletion tools/klh10
2 changes: 1 addition & 1 deletion tools/ncp
1 change: 0 additions & 1 deletion tools/pdp6
Submodule pdp6 deleted from 5f4d51
Loading