home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- *
- * NAME: taskmain.cpp
- *
- * DESCRIPTION: degenerate main for multitasking system... if
- * tasks do all the init work, just link this in
- *
- * copyright (c) 1991 J. Alan Eldridge
- *
- * M O D I F I C A T I O N H I S T O R Y
- *
- * when who what
- * -------------------------------------------------------------------
- * 04/12/91 J. Alan Eldridge created
- *
- *********************************************************************/
-
- #include "aedef.h"
- #include "task.h"
-
-
- //------------------------------------------------------------
- // main() -- simple main that just calls the scheduler
- //------------------------------------------------------------
-
-
- main()
- {
- scheduler();
- return 0;
- }
-
-