
October 13 1995, Draft 1
405
Chapter 7 Software Debugging
XXXXXXXX in the DATA column when an instruction is supplied by the on–chip
cache. However, the Xs will be replaced with the actual instruction if an executable
program has been loaded. For replacement to be successful, the Am29040 target
processor must be executing with physical addressing or with a one–to–one virtual to
physical address translation scheme. This is because the Am29040 slave processor
produces physical address values. The virtual addresses inherent in the loaded
program must correspond to the physical addresses appearing on the processor
address bus. The Am29460 slave processor produces virtual addresses, but this does
not entirely solve the problems created by the use of address translation. I will say
more about this in section 7.9.5.
As explained in section 7.8, the trace listing frame is formatted with the “trcol”
command. This is accomplished by entering a “trcol” command sequence, such as
the following example, into the start–up udb.rc file. The “–w” parameter specifies the
maximum display width (in characters) for a label. The udb.rc file is accessed from
the current working directory or from your home directory.
trcol
trcol
trcol
trcol
trcol
–d
–d
–d
–d
–d
–w 8
–w 15
–w 8
–w 27
–w 6
ADDR
SYM
DATA
DASM
TYPE
#general trace labels
#symbolic adress
#data bus value
#disassembled DATA label
#type of operation
trcol
–d –w 6
STAT_
#additional Am29040 trace label
Displaying a large number of labels will require a wide trace frame. It is useful to
initially define a large View frame, which can later be switched to displaying trace.
When UDB is invoked, a fixed sized null frame is randomly positioned on the dis-
play. Using the following udb.rc command sequence, the null frame can be replaced
with a user specified window size positioned at the top left hand corner of the screen.
After creating the View frame, the null window is deleted.
#create
wcreate
wdelete 0
X
0
Y
0
rows columns type udb.rc command
24
90
view #create new
View
frame
#delete original null window
–g
UDB supports the binding of buttons to macro commands. This is a convenient
means of issuing
mktarget
commands, rather than
hard–wiring
them into udb.rc.
This simplifies the task of selecting from a number of different
mktarget
options.
Given that the View frame is established during UDB start–up (as described above),
the following udb.rc commands assign buttons to the macro table associated with the
View frame. Note that user programmed buttons should be restricted to the left hand
side of the window. The example command sequence creates two buttons. The button
marked “LA” can be used to establish a connection to a logic analyzer. The “view –u”
command causes a source frame to be invoked. If the 29K program counter is
currently not in source but in disassembly, the disassembly view will be invoked.