File tree 2 files changed +11
-12
lines changed
2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# detect OS
3
3
UNAME =$(shell uname)
4
- ifeq ($(UNAME ) , Linux)
4
+ ifeq ($(UNAME ) , " Linux" )
5
5
UNAME=LINUX
6
6
else
7
- ifeq ($(UNAME ) , Darwin)
7
+ ifeq ($(UNAME ) , " Darwin" )
8
8
UNAME=DARWIN
9
9
else
10
- ifeq ($(UNAME ) , FreeBSD)
10
+ ifeq ($(UNAME ) , " FreeBSD" )
11
11
UNAME=FREEBSD
12
12
else
13
- ifeq ($(UNAME ) , OpenBSD)
13
+ ifeq ($(UNAME ) , " OpenBSD" )
14
14
UNAME=OPENBSD
15
15
endif
16
16
endif
Original file line number Diff line number Diff line change @@ -3,28 +3,27 @@ set cpu eae
3
3
set cpu history=100
4
4
show cpu
5
5
6
- # set up SIMH devices:
6
+ ; set up SIMH devices:
7
7
8
- # UNIX character translations (CR to NL, ESC to ALTMODE):
8
+ ; UNIX character translations (CR to NL, ESC to ALTMODE):
9
9
set tti unix
10
10
11
- # RB09 fixed head disk:
11
+ ; RB09 fixed head disk:
12
12
set rb ena
13
13
att rb image.fs
14
14
15
- # enable TELNET in GRAPHICS-2 keyboard/display(!!)
15
+ ; enable TELNET in GRAPHICS-2 keyboard/display(!!)
16
16
set g2in ena
17
17
att -U g2in 12345
18
18
19
- # disable hardware UNIX-7 doesn't know about:
19
+ ; disable hardware UNIX-7 doesn't know about:
20
20
set lpt disa
21
21
set drm disa
22
22
set dt disa
23
23
24
- # show device settings:
24
+ ; show device settings:
25
25
show dev
26
26
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)
29
28
load boot.rim 010000
30
29
go
You can’t perform that action at this time.
0 commit comments