aboutsummaryrefslogtreecommitdiff
path: root/main.c
blob: 76e916838efb65aa70343313bdcce1baa29f9858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}