OSDN Git Service

First commitment for the BlackTank LPC1769.
[blacktank/blacktank.git] / sys_init.h
1 /**
2  * @file sys_init.h
3  * @author Shinichiro Nakamura
4  * @brief システムで優先的に初期化したい処理の定義。
5  */
6
7 #ifndef _SYS_INIT_H_
8 #define _SYS_INIT_H_
9
10 /*
11  *  ターゲット依存の定義
12  */
13 #include "target_test.h"
14
15 /*
16  *  関数のプロトタイプ宣言
17  */
18 #ifndef TOPPERS_MACRO_ONLY
19
20 void sys_init(intptr_t exinf);
21
22 #endif /* TOPPERS_MACRO_ONLY */
23
24 #endif /* _SYS_INIT_H_ */
25