aboutsummaryrefslogtreecommitdiff
path: root/Source/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/main.c')
-rwxr-xr-xSource/main.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/Source/main.c b/Source/main.c
new file mode 100755
index 0000000..083daa0
--- /dev/null
+++ b/Source/main.c
@@ -0,0 +1,27 @@
+/* *************************************
+ * Includes
+ * *************************************/
+
+#include "Global_Inc.h"
+#include "Menu.h"
+#include "System.h"
+
+/* *************************************
+ * Defines
+ * *************************************/
+
+/* *************************************
+ * Local Prototypes
+ * *************************************/
+
+int main(void)
+{
+
+ //System initialization
+ SystemInit();
+
+ MainMenu();
+
+ return 0;
+
+}