mirror of
https://github.com/wfjm/w11.git
synced 2026-01-13 15:37:43 +00:00
- pdp11_sequencer.vhd: BUGFIX: use is_kstackdst1246 also in dstr flow - tools/asm-11/lib/ - defs_cpu.mac: rename cp.sli -> cp.slr - halt_checks.mac: add htstne, htsbne - tools/tcode - cpu_basics.mac: rename cp.sli -> cp.slr - cpu_details.mac: add Test A3: STKLIM - cpu_(eis|mmu).mac,tcode.ecmd: editorial changes
26 lines
761 B
Plaintext
26 lines
761 B
Plaintext
; $Id: tcode.ecmd 1313 2022-11-04 14:01:08Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2022- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; setup w11 like processor configuration
|
|
; set nouwin to disable UNIBUS window (17000000-17757777) to UNIBUS map
|
|
; set memory to 3840
|
|
; this way e11 behaves like w11 and SimH, which simplifies tcodes
|
|
;
|
|
set cpu 70
|
|
set cpu nouwin
|
|
set memory 3840
|
|
set cpu nofpp
|
|
set idle delay=1
|
|
; set ^E as break character (like in SimH)
|
|
set break 005
|
|
; enable PC value logging (inspect with show pclog)
|
|
set pclog on
|
|
; set sysid, leading '1' indicates simulator, next '2' e11
|
|
set cpu SYSID=0120345
|
|
;
|
|
; create log file, the only way to capture e11 output
|
|
; no rediction to stdout possible
|
|
;
|
|
log tt0: tmp_e11_tt0
|