Also fixed the alt system to use Phil's bootstrap code.
This commit is contained in:
+2
-2
@@ -25,7 +25,7 @@ BINARIES=../binaries/
|
|||||||
all: cmd others a.ptr a.rim image.fs
|
all: cmd others a.ptr a.rim image.fs
|
||||||
|
|
||||||
# Make alternative everything: no dd but . and ..
|
# Make alternative everything: no dd but . and ..
|
||||||
alt: altcmd altothers alt/a.rim alt/image.fs
|
alt: altcmd altothers a.rim alt/a.ptr alt/image.fs
|
||||||
|
|
||||||
# The run rule has no dependencies so that the system can be booted easily
|
# The run rule has no dependencies so that the system can be booted easily
|
||||||
# and frequently with make run. However, you have to manually make all first!
|
# and frequently with make run. However, you have to manually make all first!
|
||||||
@@ -34,7 +34,7 @@ run:
|
|||||||
|
|
||||||
# Alternative run, use the alt/image.fs
|
# Alternative run, use the alt/image.fs
|
||||||
altrun:
|
altrun:
|
||||||
cd alt; $(PDP7) unixv0.simh
|
$(PDP7) alt/unixv0.simh
|
||||||
|
|
||||||
dist: all alt
|
dist: all alt
|
||||||
mkdir -p $(BINARIES)
|
mkdir -p $(BINARIES)
|
||||||
|
|||||||
+20
-2
@@ -3,11 +3,29 @@ set cpu eae
|
|||||||
set cpu history=100
|
set cpu history=100
|
||||||
show cpu
|
show cpu
|
||||||
|
|
||||||
|
# set up SIMH devices:
|
||||||
|
|
||||||
|
# UNIX character translations (CR to NL, ESC to ALTMODE):
|
||||||
set tti unix
|
set tti unix
|
||||||
|
|
||||||
|
# RB09 fixed head disk:
|
||||||
set rb ena
|
set rb ena
|
||||||
att rb image.fs
|
att rb alt/image.fs
|
||||||
|
|
||||||
|
# uncomment to TELNET in GRAPHICS-2 keyboard/display(!!)
|
||||||
|
# (requires github.com/philbudne/simh)
|
||||||
|
#set g2in ena
|
||||||
|
#att -U g2in 12345
|
||||||
|
|
||||||
|
# disable hardware UNIX-7 doesn't know about:
|
||||||
|
set lpt disa
|
||||||
|
set drm disa
|
||||||
|
set dt disa
|
||||||
|
|
||||||
|
# show device settings:
|
||||||
show dev
|
show dev
|
||||||
|
|
||||||
|
# load and run the bootstrap code
|
||||||
load -S a.rim
|
load -S a.rim
|
||||||
dep pc 0100
|
dep pc 010000
|
||||||
go
|
go
|
||||||
|
|||||||
Reference in New Issue
Block a user