Refactored Project Structure for use with emulator

This commit is contained in:
t-moe
2015-04-03 12:02:33 +02:00
commit 51089aaba1
16 changed files with 336 additions and 0 deletions

9
emulator/main.c Normal file
View File

@@ -0,0 +1,9 @@
extern void qt_init(int argc, char* argv[]);
extern int qt_execute();
int main(int argc, char* argv[]) {
qt_init(argc,argv);
return qt_execute();
}