mirror of
https://github.com/wfjm/w11.git
synced 2026-05-03 06:39:50 +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
27 lines
547 B
Tcl
27 lines
547 B
Tcl
# $Id: 211bsd_rl_boot.tcl 835 2016-12-31 10:00:14Z mueller $
|
|
#
|
|
# Setup file for 211bsd RL02 based system
|
|
#
|
|
# Usage:
|
|
#
|
|
# console_starter -d DL0 &
|
|
# console_starter -d DL1 &
|
|
# ti_w11 -xxx @211bsd_rl_boot.tcl ( -xxx depends on sim or fpga connect)
|
|
#
|
|
|
|
# setup w11 cpu
|
|
rutil::dohook "preinithook"
|
|
puts [rlw]
|
|
|
|
# setup tt,lp (211bsd uses parity -> use 7 bit mode)
|
|
rw11::setup_tt "cpu0" to7bit 1
|
|
rw11::setup_lp
|
|
|
|
# mount disks
|
|
cpu0rla0 att 211bsd_rl_root.dsk
|
|
cpu0rla1 att 211bsd_rl_usr.dsk
|
|
|
|
# and boot
|
|
rutil::dohook "preboothook"
|
|
cpu0 boot rla0
|