00001 /********************************************************* 00002 *Project: 80X86 32BIT MULTI TASKING OPERATING SYSTEM 00003 *Description: C code entry function for os 00004 * 00005 *File: main.c 00006 *Author: Book Chen 00007 *Date: 2010.01.01 00008 *********************************************************** 00009 */ 00010 #include "includes.h" 00011 00012 void Main(void){ 00013 OsInit(); 00014 OsTaskCreat(RootTask, 00015 (OS_STACK*)&RootTaskStack[ROOT_TASK_STACK_SIZE-1], 00016 &RootTaskName,0); 00017 OsStart(); 00018 } 00019
1.5.9