aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-04-01 20:01:07 -0400
committerBen Burwell <ben@benburwell.com>2015-04-01 20:01:07 -0400
commit7b0995ea20afed2632893f8528ce9d57772d5498 (patch)
tree8327ceb84ebd59403a8596c8d790c3b127308d97 /main.c
as of 2013-09-192013-09-19
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;
+}
+