SLAU131Y October 2004 – June 2021
All C/C++ programs must be linked with code to initialize and execute the program, called a bootstrap routine, also known as the boot.c.obj object module. The symbol _c_int00 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 begins running, it executes boot.c.obj first. The boot.c.obj symbol contains code and data for initializing the run-time environment and performs the following tasks:
The run-time-support object libraries contain boot.c.obj. You can: