diff options
author | Ben Burwell <ben@benburwell.com> | 2015-04-01 20:01:07 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-04-01 20:01:07 -0400 |
commit | 7b0995ea20afed2632893f8528ce9d57772d5498 (patch) | |
tree | 8327ceb84ebd59403a8596c8d790c3b127308d97 /main.c |
as of 2013-09-192013-09-19
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -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 <stdio.h>
+#include "mpx.h"
+
+
+int main(void) {
+ printf("... booting MPX\n\n");
+
+ /* Put initialization code here */
+
+ comhan(); /* Execute the command handler */
+
+ return 0;
+}
+
|