Specifications

Table Of Contents
ARM Debugger 10 Quick Start of the JTAG Debugger
©1989-2014 Lauterbach GmbH
A start sequence example is shown below. This sequence can be written to an ASCII file (script file) and
executed with the command DO <filename>.
*) These commands open windows on the screen.
WinCLEAR ; Clear all windows
SYStem.CPU ARM940T ; Select the core type
MAP.BOnchip 0x100000++0xfffff ; Specify where FLASH/ROM is
SYStem.Up ; Reset the target and enter debug mode
Data.LOAD armle.axf ; Load the application
Register.Set pc main ; Set the PC to function main
Register.Set r13 0x8000 ; Set the stack pointer to address 8000
PER.view ; Show clearly arranged peripherals
; in window *)
List ; Open source code window *)
Register /SpotLight ; Open register window *)
Frame.view /Locals /Caller ; Open the stack frame with
; local variables *)
Var.Watch var1 var2 ; Open watch window for variables *)
Break.Set 0x1000 /Program ; Set software breakpoint to address
; 1000 (address 1000 outside of BOnchip
; range)
Break.Set 0x101000 /Program ; Set on-chip breakpoint to address
; 101000 (address 101000 is within
; BOnchip range)