1 #ifndef TWL_INIT_CRT0_H_
2 #define TWL_INIT_CRT0_H_
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #ifdef SDK_ARM9
9 	void TwlMain(void);
10 	#define NitroMain    TwlMain
11 
12 	void NitroStartUp(void);
13 	#define TwlStartUp NitroStartUp
14 #else
15 	void TwlSpMain(void);
16 	#define NitroSpMain TwlSpMain
17 
18 	void NitroSpStartUp(void);
19 	#define TwlStartUp NitroSpStartUp
20 	#define TwlSpStartUp NitroSpStartUp
21 #endif
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif
28