
96
Evaluating and Programming the 29K RISC Family
be available. These operating system services were considered necessary to enable
performance benchmarking of application code (for example the
cycles
service re-
turns a 56–bit elapsed processor cycle count). The result was the Host Interface spec-
ification, known as HIF. It specifies a number of operating system services which
must always be present. The list is very small, but it enables library producers to be
assured that their code will run on any 29K platform. The HIF specification states
how a system call will be made, how parameters will be passed to the operating sys-
tem, and how results will be returned. Operating system vendors need not support
HIF conforming services if they wish; they could just continue to use their own oper-
ating system interface and related library routines. But to make use of the popular
library routines from the Metaware High C 29K compiler company, the operating
system company must virtualize the HIF services on top of the underlying operating
system services.
The original specification grew into what is now known as HIF 2.0. The specifi-
cation includes services for signal handling (see following sections on C language
interrupt handlers), memory management support, run–time environment initializa-
tion and other processor configuration options. Much of this development was a re-
sult of AMD developing a small collection of routines known as OS–boot (see sec-
tion 7.4). This code can take control of the processor from RESET, prepare the run–
time environment for a HIF conforming application program, and support any HIF
request made by the application. OS–boot effectively implements a single applica-
tion–task operating system. It is adequate for many user requirements, which may be
merely to benchmark 29K applications. With small additions and changes it is ade-
quate for many embedded products. However, some of the HIF 2.0 services, re-
quested by the community who saw OS–boot as an adequate operating system, were
of such a nature that they often cannot be implemented in an operating system ven-
dor’s product. For example the
settrap
service enables an entry to be placed directly
into the processor’s interrupt vector table; some operating systems, for example
UNIX, will not permit this to occur as it is a security risk and, if improperly used, an
effective way to crash the system.
There are standard memory, register and other initializations that must be per-
formed by a HIF-conforming operating system before entry into a user program. In C
language programs, this is usually performed by the module
crt0.s
. This module re-
ceives control when an application program is invoked, and executes prior to invoca-
tion of the user’s
main()
function. Other high-level languages have similar modules.
The following three sections describe: what a HIF conforming operating system
must perform before code in
crt0.s
starts executing; what is typically achieved in
crt0.s
code; and finally, what run–time services are specified in HIF 2.0.