
October 13 1995, Draft 1
379
Chapter 7 Software Debugging
MiniMON29K – UMON Differences
When using UMON rather than MiniMON29K components, a different crt0 file
must be linked with application code (the crt0 file linked with application code
should not be confused with the boot–crt0 file linked with UMON). There are a num-
ber of reasons for this; for example, MiniMON29K normally clears the application
BSS data region when a new program is prepared for execution. UMON does not
clear the BSS region and hence this task must now be performed by the crt0 file
linked with the application. Normally the default crt0 file provided with the compiler
is linked ahead of any application code.
UMON expects OS–boot to satisfy HIF service requests –– at least for service
numbers 256 and greater. However, service numbers 255 and lower require OS–boot
to request help from MonTIP. For this purpose, OS–boot exchanges MiniMON29K
messages with MonTIP. When the DebugCore is replaced by UMON, the
MiniMON29K message system is also replaced by the UMON communication
mechanism. Hence, OS–boot can not be used to perform HIF services with service
number 255 or lower.
To support HIF services such as
write
(service number 20) which is used by the
printf()
library routine, UDB is provided with a library which supplies routines, such
as
_write()
, which interface to the UMON communication mechanism. This library,
libudb.lib, must be linked with application code. The libudb.lib library must be
linked ahead of the default libraries supplied with the compiler, as the default li-
braries also contain system call glue–routines such as
_write()
; but these now un-
wanted routines request HIF services supported by OS–boot.
Compiling a Program for UMON Debugging
When UMON is launched from MiniMON29K, care must be taken when
building application programs for debug. A makefile for driving the High C 29K
compiler is provided with UMON as a template for building application programs.
The makefile builds a link–command–file and ensures the correct files are linked in
the correct order. The “APP=
fib
” line at the top of the makefile must be modified to
change the application program being build.
Alternatively, the compiler can be driven directly from the command line. First,
alternative files must be copied from the UMON installation to the High C 29K
installation directories. Copy the file /udb/apps/crt0.o to /29k/lib/udb_crt0.o and file
/udb/apps/libudb.lib to /29k/lib/libudb.lib. These files are referenced by the com-
mand file /udb/apps/udb.cmd which should also be copied to /29k/lib/udb.cmd. File
fib.c can then be compiled with the command:
hc29 –g –o fib.abs –nocrt0 –cmdudb.cmd fib.c
The “–nocrt0” option supresses linking of the default /29k/lib/crt0.o file. The
udb.cmd file is configured to link programs starting at memory location
0x40040000. This is suitable for use with an SA29200 evaluation board. The address
is higher than usual because UMON is also installed in the 29K’s program memory.