Skip to content

Commit 555eb30

Browse files
authored
Bug fixes (DoctorWkt#236)
* '#' is not a valid comment * bug fix * less noisy fix
1 parent 01c6bc8 commit 555eb30

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

build/os.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11

22
# detect OS
33
UNAME=$(shell uname)
4-
ifeq ($(UNAME), Linux)
4+
ifeq ($(UNAME), "Linux")
55
UNAME=LINUX
66
else
7-
ifeq ($(UNAME), Darwin)
7+
ifeq ($(UNAME), "Darwin")
88
UNAME=DARWIN
99
else
10-
ifeq ($(UNAME), FreeBSD)
10+
ifeq ($(UNAME), "FreeBSD")
1111
UNAME=FREEBSD
1212
else
13-
ifeq ($(UNAME), OpenBSD)
13+
ifeq ($(UNAME), "OpenBSD")
1414
UNAME=OPENBSD
1515
endif
1616
endif

build/unixv0.simh

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,27 @@ set cpu eae
33
set cpu history=100
44
show cpu
55

6-
# set up SIMH devices:
6+
; set up SIMH devices:
77

8-
# UNIX character translations (CR to NL, ESC to ALTMODE):
8+
; UNIX character translations (CR to NL, ESC to ALTMODE):
99
set tti unix
1010

11-
# RB09 fixed head disk:
11+
; RB09 fixed head disk:
1212
set rb ena
1313
att rb image.fs
1414

15-
# enable TELNET in GRAPHICS-2 keyboard/display(!!)
15+
; enable TELNET in GRAPHICS-2 keyboard/display(!!)
1616
set g2in ena
1717
att -U g2in 12345
1818

19-
# disable hardware UNIX-7 doesn't know about:
19+
; disable hardware UNIX-7 doesn't know about:
2020
set lpt disa
2121
set drm disa
2222
set dt disa
2323

24-
# show device settings:
24+
; show device settings:
2525
show dev
2626

27-
# load and run the paper tape bootstrap
28-
# (loads system from disk)
27+
; load and run the paper tape bootstrap (loads system from disk)
2928
load boot.rim 010000
3029
go

0 commit comments

Comments
 (0)