mirror of
https://github.com/wfjm/w11.git
synced 2026-01-20 10:24:25 +00:00
- tools/bin/ti_w11: use rw11::shell by default; add -ns to suppress it - tools/oskit/*/*_boot.tcl: remove activation of cpucons and cpumon - tools/src/librwxxtpp - RtclRw11Cpu.cpp: use 'ssr' instead of 'mmr' for MMU register names - tools/tcl/rw11: - defs.tcl: fix typo in regmap_add for SDR's - shell.tcl: add '@' command - shell_simh.tcl: added, simh command converter - *: README updates
26 lines
534 B
Tcl
26 lines
534 B
Tcl
# $Id: rt11-53_rl_boot.tcl 835 2016-12-31 10:00:14Z mueller $
|
|
#
|
|
# Setup file for RT-11 V5.3 RL02 based system
|
|
#
|
|
# Usage:
|
|
#
|
|
# console_starter -d DL0 &
|
|
# ti_w11 -xxx @rt11-53_rl_boot.tcl ( -xxx depends on sim or fpga connect)
|
|
#
|
|
|
|
# setup w11 cpu
|
|
rutil::dohook "preinithook"
|
|
puts [rlw]
|
|
|
|
# setup tt,lp,pp (single console; enable rx rate limiter on old DEC OS)
|
|
rw11::setup_tt "cpu0" ndl 1 dlrlim 5
|
|
rw11::setup_lp
|
|
rw11::setup_pp
|
|
|
|
# mount disks
|
|
cpu0rla0 att RT11_V5.3_SYSTEM.dsk
|
|
|
|
# and boot
|
|
rutil::dohook "preboothook"
|
|
cpu0 boot rla0
|