diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/main.c b/main.c new file mode 100644 index 0000000..8f61750 --- /dev/null +++ b/main.c @@ -0,0 +1,12 @@ +#include <stdio.h> +#include "emulator.h" + +int main(int argc, char** argv) +{ + (void) argc; + (void) argv; + + printf("Hello brother!\n"); + + return 0; +} |