From 53a6c5da9700d6649e17cdc16dd75af550e03b17 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Sun, 26 Jan 2020 12:34:05 +0100 Subject: [PATCH] Make the Type 340 display optional. --- build/pdp10-ka/start | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build/pdp10-ka/start b/build/pdp10-ka/start index 7ff8e023..53daea7d 100755 --- a/build/pdp10-ka/start +++ b/build/pdp10-ka/start @@ -34,10 +34,16 @@ tvcon() { started "TV-console" "$!" } +type340() { + cp build/pdp10-ka/run out/pdp10-ka/run +} + +sed 's/set dpy enabled/set dpy disabled/' < build/pdp10-ka/run > out/pdp10-ka/run + while test -n "$1"; do "$1" shift done -tools/sims/BIN/pdp10-ka build/pdp10-ka/run +tools/sims/BIN/pdp10-ka out/pdp10-ka/run exit 0