Last active
February 26, 2020 17:58
-
-
Save olegslavkin/550564759e1494c41a5af524055e16ea to your computer and use it in GitHub Desktop.
simh ini file for vax11/780.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set dz lines=8 | |
set dz 7b | |
att dz -m line=0 8880 | |
att dz -m line=1 8881 | |
att dz -m line=2 8882 | |
att dz -m line=3 8883 | |
att dz -m line=4 8884 | |
att dz -m line=5 8885 | |
att dz -m line=6 8886 | |
att dz -m line=7 8887 | |
set rq0 ra81 | |
att rq0 rq.dsk | |
set rq1 dis | |
set rq2 dis | |
set rq3 dis | |
set rp dis | |
set lpt dis | |
set rl dis | |
set tq dis | |
set tu dis | |
att ts gnu1988.tape | |
set tti 7b | |
set tto 7b | |
load -o boot42 0 | |
d r10 9 | |
d r11 0 | |
run 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
container=vax780_42bsd | |
sudo docker rm -f $container | |
sudo docker run -it -d --rm -v $(pwd):/machines -p 2323:2323 -p 2324:2324 -p 8880-8887:8880-8887 --name $container docker.io/jguillaumes/simh-allsims:latest | |
sudo docker exec -d $container /simh-bin/vax780 /machines/boot.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment