Skip to content

Commit

Permalink
Use latest version of SIMH for emulators other than KS10.
Browse files Browse the repository at this point in the history
  • Loading branch information
larsbrinkhoff committed Jan 20, 2021
1 parent 47daada commit 629faf8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Expand Up @@ -37,3 +37,6 @@
[submodule "tools/simlac"]
path = tools/simlac
url = https://github.com/jdersch/sImlac
[submodule "tools/sim-h"]
path = tools/sim-h
url = https://github.com/simh/simh
8 changes: 4 additions & 4 deletions Makefile
Expand Up @@ -50,7 +50,7 @@ BINIGNORE=-e '^(ka10|kl10|ks10|minsys)$$'
# These are on the minsrc tape.
SRCIGNORE=-e '^(system|midas)$$'

SUBMODULES = dasm itstar klh10 mldev simh sims supdup tapeutils tv11 pdp6 vt05 tek4010
SUBMODULES = dasm itstar klh10 mldev simh sim-h sims supdup tapeutils tv11 pdp6 vt05 tek4010

# These files are used to create bootable tape images.
RAM = bin/ks10/boot/ram.262
Expand All @@ -64,7 +64,7 @@ KL10=tools/sims/BIN/pdp10-kl
ITSTAR=tools/itstar/itstar
WRITETAPE=tools/tapeutils/tapewrite
MAGFRM=tools/dasm/magfrm
GT40=tools/simh/BIN/pdp11 $(OUT)/bootvt.img
GT40=tools/sim-h/BIN/pdp11 $(OUT)/bootvt.img
TV11=tools/tv11/tv11
PDP6=tools/pdp6/emu/pdp6
KLFEDR=tools/dasm/klfedr
Expand Down Expand Up @@ -299,8 +299,8 @@ $(SMF):
$(GIT) submodule sync --recursive `dirname $@`
$(GIT) submodule update --recursive --init `dirname $@`

tools/simh/BIN/pdp11:
$(MAKE) -C tools/simh pdp11
tools/sim-h/BIN/pdp11:
$(MAKE) -C tools/sim-h pdp11

check-dirs: Makefile
mkdir -p $(OUT)/check
Expand Down
2 changes: 1 addition & 1 deletion build/pdp10-ka/start
Expand Up @@ -24,7 +24,7 @@ stop() {
}

gt40() {
(sleep 3; tools/simh/BIN/pdp11 build/pdp10-ka/gt40 >gt40.log 2>&1) &
(sleep 3; tools/sim-h/BIN/pdp11 build/pdp10-ka/gt40 >gt40.log 2>&1) &
started GT40 "$!"
}

Expand Down
2 changes: 1 addition & 1 deletion build/simh/start
Expand Up @@ -21,7 +21,7 @@ stop() {
}

gt40() {
(sleep 3; tools/simh/BIN/pdp11 build/simh/gt40 >gt40.log 2>&1) &
(sleep 3; tools/sim-h/BIN/pdp11 build/simh/gt40 >gt40.log 2>&1) &
started GT40 "$!"
}

Expand Down
1 change: 1 addition & 0 deletions tools/sim-h
Submodule sim-h added at 9f064d

0 comments on commit 629faf8

Please sign in to comment.