1
0
mirror of https://github.com/PDP-10/its.git synced 2026-01-17 16:53:23 +00:00
Lars Brinkhoff f8289af876 Start GT40 from toplevel start script.
Update SIMH PDP11 simulator to a version which supports a bootable ROM
device.
2018-09-11 18:47:27 +02:00

23 lines
337 B
Bash
Executable File

#!/bin/sh
gt40() {
trap kill_gt40 0
(sleep 3; tools/simh/BIN/pdp11 build/sims/gt40 >gt40.log 2>&1) &
GT40="$!"
echo "GT40 started, pid $GT40"
}
kill_gt40() {
kill "$GT40"
sleep 1
kill -9 "$GT40"
echo "GT40 stopped"
}
while test -n "$1"; do
"$1"
shift
done
tools/simh/BIN/pdp10 build/simh/boot