
October 13 1995, Draft 1
359
Chapter 7 Software Debugging
the on–chip UART. A new operating system may wish to add support, for say, DMA
activity, which was not supported by OS–boot. This may require an interrupt handler
activated by INTR3. If the MiniMON29K message system is to continue operation,
then the new operating system must take over the INTR3 vector table entry. But, after
the new operating system handler is complete it must jump to the original vector han-
dler address rather than IRETing. This gives the message system low level interrupt
handler an opportunity to run. A better alternative is to use the technique described in
section 2.5.5 to deal with INTR3 overloading.
7.5
UNIVERSAL DEBUG INTERFACE (UDI)
Code development for an embedded processor is generally more costly than de-
velopment of code of equivalent complexity intended for execution on a engineering
workstation. The embedded application code can not benefit from an underlying sup-
port operating system such as UNIX. In some cases, developers may chose to first
install a small debug support monitor, such as MiniMON29K, or third–party execu-
tive which can offer a somewhat improved development environment. In the process
of getting an embedded support monitor running or developing application code to
run directly on the processor, emulation hardware may be employed. The availability
of debug tools and their configurability is an important factor when selecting a pro-
cessor for an embedded project.
The architecture of the latest RISC processors may be simplified compared to
their CISC predecessors, but the complexity of controlling the processor operation
has not been reduced. The use of register stacks and instruction delay slots and other
performance enhancing techniques has lead to increased use of high level program-
ming languages such as C. The compiler has been given the responsibility of produc-
ing efficient assembly code, and the developer rarely deals with code which manipu-
lates data at the processor register level. The increased productivity achievable by
this approach is dependent on high level debug support tools.
Developers of products containing embedded processors are looking to RISC
for future products offering increased capability. The greater performance relative to
RISC processor cost should make this possible. The suitability, cost and productivity
of the tools available for code development are likely to be the major factor in decid-
ing the direction ahead in preparing to tool–up for RISC.
The following sections describe the Universal Debug Interface (UDI), which is
processor independent and enables greater debug tool configurability. A number of
emulator and embedded monitor suppliers, as well as high level language debug
tools suppliers, are currently configuring their tools to comply with the proposed
UDI standard. Current implementations are targeted for RISC processor code devel-
opment. UDI should ease the choice in selecting tools and, consequently, selecting
RISC. This section shall concentrate on describing the Free Software Foundation’s
GDB C language source debugger’s integration with UDI.