File: bootcode.ld

package info (click to toggle)
newlib 4.6.0.20260123-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 69,060 kB
  • sloc: ansic: 510,811; asm: 53,339; makefile: 52,993; sh: 12,369; perl: 2,902; cpp: 1,280; python: 999; lisp: 720; exp: 359; pascal: 47; xml: 40
file content (14 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* This script forces the inclusion of boot code by creating references
   to all the initialisation functions.  These early references also
   ensure custom versions of code are pulled out of user supplied
   objects and libraries before default implementations.  */

EXTERN (__reset_vector);
EXTERN (__init_cp0);
EXTERN (__init_l23cache);
EXTERN (__init_icache);
EXTERN (__change_k0_cca);
EXTERN (__init_dcache);
EXTERN (__init_tlb);
EXTERN (__boot_init_hook);
PROVIDE (__boot_init_hook = 0);