From 555eb30fc76b8fa29095d32eca9a43e9b1638288 Mon Sep 17 00:00:00 2001 From: Tom Everett Date: Fri, 8 Sep 2023 15:30:58 -0600 Subject: [PATCH] Bug fixes (#236) * '#' is not a valid comment * bug fix * less noisy fix --- build/os.mk | 8 ++++---- build/unixv0.simh | 15 +++++++-------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/build/os.mk b/build/os.mk index af760366..a7e4ffd4 100644 --- a/build/os.mk +++ b/build/os.mk @@ -1,16 +1,16 @@ # detect OS UNAME=$(shell uname) -ifeq ($(UNAME), Linux) +ifeq ($(UNAME), "Linux") UNAME=LINUX else -ifeq ($(UNAME), Darwin) +ifeq ($(UNAME), "Darwin") UNAME=DARWIN else -ifeq ($(UNAME), FreeBSD) +ifeq ($(UNAME), "FreeBSD") UNAME=FREEBSD else -ifeq ($(UNAME), OpenBSD) +ifeq ($(UNAME), "OpenBSD") UNAME=OPENBSD endif endif diff --git a/build/unixv0.simh b/build/unixv0.simh index 1d225044..b648380a 100644 --- a/build/unixv0.simh +++ b/build/unixv0.simh @@ -3,28 +3,27 @@ set cpu eae set cpu history=100 show cpu -# set up SIMH devices: +; set up SIMH devices: -# UNIX character translations (CR to NL, ESC to ALTMODE): +; UNIX character translations (CR to NL, ESC to ALTMODE): set tti unix -# RB09 fixed head disk: +; RB09 fixed head disk: set rb ena att rb image.fs -# enable TELNET in GRAPHICS-2 keyboard/display(!!) +; enable TELNET in GRAPHICS-2 keyboard/display(!!) set g2in ena att -U g2in 12345 -# disable hardware UNIX-7 doesn't know about: +; disable hardware UNIX-7 doesn't know about: set lpt disa set drm disa set dt disa -# show device settings: +; show device settings: show dev -# load and run the paper tape bootstrap -# (loads system from disk) +; load and run the paper tape bootstrap (loads system from disk) load boot.rim 010000 go