
October 13 1995, Draft 1
341
Chapter 7 Software Debugging
The TE and TP bits, located in the Current Processor Status register,
belong
to
the MiniMON29K DebugCore. However, the CPS register really belongs to the op-
erating system and the OS should not modify the TE and TP bits which are main-
tained by the DebugCore. When the operating system issues an IRET instruction it
updates the CPS register with the contents of the OPS register. Normally the Debug-
Core will set the TE bit in the OPS before the operating system performs an IRET.
However, initially the operating system must call the support routine
dbg_iret()
to
perform the IRET on behalf of the operating system. This gives the DebugCore an
opportunity to gain control of the TE bit.
7.3.3
The DebugCore
The TIP host processor controlling the target 29K processor sends messages via
the available link to the DebugCore module. The message system enables the host to
examine and change registers and memory in the target hardware. Program execu-
tion can also be controlled via instruction breakpoints and single stepping instruc-
tions. Messages are provided specifically for controlling processor execution.
The DebugCore decodes the messages, giving access to the 29K processor reg-
isters and the target system memory. However, it does not access the non–processor
resources directly. The Configuration Control Module supports the peek and poke
functions shown below. These functions are used for all non–register space target
hardware access. Note, all functions and data variables defined in the configuration
MiniMON29K module begin with the
cfg_
prefix.
void cfg_peek(to, from, count, space, size)
void cfg_poke(to, from, count, space, size)
The peek function is used to read from target space into temporary debug core
BSS memory space. The poke function is used when writing to target space. The
‘space’ parameter is used to indicate the target address space, according to the re-
ceived message parameters. Typical space field values would enable instruction
space, data space or I/O space access. The ‘size’ field is used to indicate the size, in
bytes, of the objects being transferred. The CFG module normally tries to make
memory accesses in the size indicated. However, if a memory system does not sup-
port, say, byte–write access to ROM–space, then the CFG access functions can be
configured to perform byte manipulation via word–sized memory accesses. By keep-
ing the access functions separate, a user can configure the peek and poke functions
for any special requirements without having to understand the DebugCore module.
Peek and poke functions are supplied for typical existing target hardware.
For example, if a system uses Flash memory devices, the erase and program-
ming sequences required to write to Flash should be built into the
cfg_poke()
proce-