SPRUI03E June 2015 – January 2023
C/C++ programs must be linked with code to initialize and execute the program, called a bootstrap routine (the boot.c.obj object module). The _c_int00 symbol is defined as the program entry point and is the start of the C boot routine in boot.c.obj. Referencing _c_int00 ensures that boot.c.obj is automatically linked in from the run-time-support library. When a program runs, it first executes boot.c.obj. The boot.c.obj symbol contains code and data to initialize the run-time environment; it performs the following:
The run-time-support object libraries contain boot.c.obj. You can: