1
0
mirror of https://github.com/livingcomputermuseum/pdp7-unix.git synced 2026-02-23 15:53:00 +00:00

Also fixed the alt system to use Phil's bootstrap code.

This commit is contained in:
Warren Toomey
2016-03-24 17:42:06 +10:00
parent 8d69dd6d13
commit b234e2ad81
2 changed files with 22 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ BINARIES=../binaries/
all: cmd others a.ptr a.rim image.fs
# 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
# 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
altrun:
cd alt; $(PDP7) unixv0.simh
$(PDP7) alt/unixv0.simh
dist: all alt
mkdir -p $(BINARIES)

View File

@@ -3,11 +3,29 @@ set cpu eae
set cpu history=100
show cpu
# set up SIMH devices:
# UNIX character translations (CR to NL, ESC to ALTMODE):
set tti unix
# RB09 fixed head disk:
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
# load and run the bootstrap code
load -S a.rim
dep pc 0100
dep pc 010000
go