
528
Evaluating and Programming the 29K RISC Family
The DebugCore 2.0 became available after August 1993, previously the origi-
nal DebugCore 1.0 was widely used. The new DebugCore will work with all versions
of MonTIP which where intended to operate with DebugCore 1.0. When linking the
new DebugCore 2.0 with an operating system, such as OS–boot 1.0 it will be neces-
sary to add code to operating system to correctly initialize vector table entry 71.
When this is done, the operating system previously integrated with DebugCore 1.0
will operate with the new DebugCore 2.0. Note, only the latest version of OS–boot
performs the necessary Vector Table initialization (see section 7.3.4).
There were two major additions made to DebugCore 2.0. The first enables Mon-
TIP to request an Operating System (OS) service function to be run. The second ex-
tends the breakpoint capability. These additions were achieved by using Vector Table
entry 71 to point to a data structure shared by the OS and the DebugCore 2.0, see
Figure D-2 below.
To make use of the new DebugCore 2.0 services, MonTIP has been enhanced to
create version 3.0. MonTIP versions prior to this release will work with DebugCore
2.0 only if the OS data fields of the shared data structure are initialized to zero by the
29K operating system.
D.3.1 Executing OS Service Functions
It is the 29K operating system’s responsibility to initialize
it’s
members of the
shared data structure pointed to by Vector Table entry 71. The DebugCore fills in the
remaining fields of the data structure when
dbg_control()
is called. The first entry in
the table is the address of the message system function,
msg_send()
. This is useful
when the OS–boot operating system is overlaid with a new operating system. The
replacement OS being down loaded via the message system. The address of the mes-
sage send function was linked with the original OS–boot code. The new OS can ob-
tain the address by examining the shared memory structure. This enables the OS to
continue using the message system.
DebugCore 2.0 supports a command known as IEXEC. The IEXEC message
sent by MonTIP provides an index and five parameters to the DebugCore. The index
is an offset into the shared data structure. It is used to obtain the address of a function
which will be called and passed the five related parameters. The minimum value for
the index, when accessing OS specific functions, is 21. Lower index values can be
used, but they relate to shared data structure addresses whose function has been pre-
defined by the DebugCore.
Functions called by the IEXEC or EXEC message need not always have five
in–coming parameters, they may be defined to have less without any difficulties. The
first 16–words of return information generated by the function invoked by the IEX-
EC command are returned to MonTIP. Most functions are likely to have a single word
or no return data.