fuckeduppdp/docker/boot.ini.template

45 lines
783 B
Plaintext

; 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
; Don't spin CPU
set cpu idle
; Change DZ vector
set dz vector=310
; boot it
boot rq0
<EXIT>