aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c22
1 files changed, 22 insertions, 0 deletions
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 <stdio.h>
+#include "mpx.h"
+
+
+int main(void) {
+ printf("... booting MPX\n\n");
+
+ /* Put initialization code here */
+
+ comhan(); /* Execute the command handler */
+
+ return 0;
+}
+