1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-25 17:58:40 +00:00

Use latest version of SIMH for emulators other than KS10.

This commit is contained in:
Lars Brinkhoff
2021-01-20 06:57:36 +01:00
parent 47daada35c
commit 629faf85eb
5 changed files with 10 additions and 6 deletions

3
.gitmodules vendored
View File

@@ -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

View File

@@ -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
@@ -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
@@ -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

View File

@@ -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 "$!"
}

View File

@@ -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 "$!"
}

1
tools/sim-h Submodule

Submodule tools/sim-h added at 9f064db561