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

Start the Chaosnet bridge.

This commit is contained in:
Lars Brinkhoff
2023-04-27 07:46:57 +02:00
parent 2080fa814f
commit f1095f73fc
6 changed files with 19 additions and 0 deletions

View File

@@ -120,6 +120,7 @@ with all PDP-10 emulators by default.
| datapoint | Datapoint 3300 | text | no | yes | no | no | no
| vt52 | VT52 | text | no | yes | yes | yes | yes
| tek | Tektronix 4010 | vector | no | yes | yes | no | no
| chaosnet | CHAOS network | network | yes | yes | yes | yes | no
### Documentation

9
build/cbridge.conf Normal file
View File

@@ -0,0 +1,9 @@
; Chaosnet bridge
chaddr 177040
chudp 42042
ncp enabled yes
; Link to ITS
link chudp localhost:42043 host 177001 myaddr 177040
; Link to the CADR
link chudp localhost:42044 host 177042 myaddr 177040

View File

@@ -26,6 +26,7 @@ help() {
This start script takes several command line arguments:
help - Display this help text.
chaosnet - Set up a local Chaosnet.
EOF

View File

@@ -73,6 +73,11 @@ simh_imlac() {
started "Imlac" "$!"
}
chaosnet() {
(sleep 1; tools/cbridge/cbridge -vs -f build/cbridge.conf >cbridge.log 2>&1) &
started "Chaosnet" "$!"
}
help() {
cat <<EOF
This start script takes several command line arguments:
@@ -88,6 +93,7 @@ datapoint - Start a Datapoint 3300 emulator.
vt52 - Start a VT52 emulator.
tek - Start a Tektronix 4010 emulator.
cscope - Enable the color scope.
chaosnet - Set up a local Chaosnet.
EOF

View File

@@ -38,6 +38,7 @@ This start script takes several command line arguments:
help - Display this help text.
vt52 - Start a VT52 emulator.
tek - Start a Tektronix 4010 emulator.
chaosnet - Set up a local Chaosnet.
EOF

View File

@@ -37,6 +37,7 @@ This start script takes several command line arguments:
help - Display this help text.
gt40 - Start a GT40 emulator.
vt52 - Start a VT52 emulator.
chaosnet - Set up a local Chaosnet.
EOF