OSDN Git Service

add Microblase sample
[hos/hos-v4a.git] / sample / mb / mb_v8 / main.c
1 /** 
2  *  Sample program for Hyper Operating System V4 Advance
3  *
4  * @file  main.c
5  * @brief %jp{メイン関数}%en{main}
6  *
7  * Copyright (C) 1998-2006 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12 #include "kernel.h"
13 #include "uart.h"
14
15
16
17 /** %jp{メイン関数} */
18 int main()
19 {
20         /* %jp{カーネルの動作開始} */
21         vsta_knl();
22         
23         return 0;
24 }
25
26
27
28 /* end of file */