forked from dsenta00/BOXVM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBOXVM.cpp
More file actions
29 lines (26 loc) · 817 Bytes
/
Copy pathBOXVM.cpp
File metadata and controls
29 lines (26 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*****************************************************************************************************************
* PROGRAM DESCRIPTION
*
* @program BOX programming language virutal machine
* @file BOXVM.cpp
* @purpose An abstract virtual machine that interprets programs written in an executable .box file format.
*
* @author Duje Senta
* @company Faculty of Electrical Engineering, Mechanical Engineering and Naval Architecture, Split
* @version 0.6 27/04/2015
*
*****************************************************************************************************************/
#include "BOXVM.h"
#include "TestBox.h"
int main(int argc, char *argv[])
{
if (argc == 1)
{
Testing();
}
else
{
RunProgram(argv[1]);
}
return 0;
}