blob: 53ea9a229765406f7cc589abf03032efd54c319f (
plain) (
blame)
1
2
3
4
5
6
7
|
#ifndef __ASSEMBLY__
extern void _start (void);
#endif
/* The function's entry point is stored in the first word of the
function descriptor (plabel) of _start(). */
#define ENTRY_POINT (((long int *) _start)[0])
|