From 7b0995ea20afed2632893f8528ce9d57772d5498 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Wed, 1 Apr 2015 20:01:07 -0400 Subject: as of 2013-09-19 --- main.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 main.c (limited to 'main.c') diff --git a/main.c b/main.c new file mode 100644 index 0000000..76e9168 --- /dev/null +++ b/main.c @@ -0,0 +1,22 @@ + +/* file: main.c + * + * This file contains the function main + * for the MPX Operating System - this is where + * the program's execution begins + */ + +#include +#include "mpx.h" + + +int main(void) { + printf("... booting MPX\n\n"); + + /* Put initialization code here */ + + comhan(); /* Execute the command handler */ + + return 0; +} + -- cgit v1.2.3