initial commit
This commit is contained in:
commit
99a66f4cfd
15 changed files with 287 additions and 0 deletions
42
docker/boot.ini.template
Normal file
42
docker/boot.ini.template
Normal file
|
@ -0,0 +1,42 @@
|
|||
; model a PDP-11/70 with maximum memory, fpu, no CIS
|
||||
set cpu 11/70 4096K fpp
|
||||
|
||||
; disable all extra devices by default, will enable later
|
||||
detach all
|
||||
reset all
|
||||
|
||||
; use 7b ascii terminal
|
||||
set tto 7b
|
||||
|
||||
; set the boot disk as an MSCP UDA50
|
||||
set rq enabled
|
||||
set rq0 rauser=1000
|
||||
attach rq0 /mnt/<DISK_FILENAME>
|
||||
show rq0
|
||||
|
||||
; set one DZ11 8 line async mux
|
||||
; accessible via telnet to port 4000
|
||||
set dz enabled
|
||||
set dz lines=8
|
||||
set dz 7b
|
||||
attach -am dz 4000
|
||||
show dz
|
||||
|
||||
; set one DELUA/DEUNA unibus enet controller
|
||||
; ==> must setup ethX per your system config
|
||||
set xu enabled
|
||||
set xu type=delua
|
||||
attach xu tap:pdp
|
||||
show xu
|
||||
|
||||
; show our config
|
||||
show devices
|
||||
show cpu iospace
|
||||
|
||||
; Configure all csr/vector
|
||||
set cpu autoconfig
|
||||
; Change DZ vector
|
||||
set dz vector=310
|
||||
; boot it
|
||||
boot rq0
|
||||
<EXIT>
|
Loading…
Add table
Add a link
Reference in a new issue