about summary refs log tree commit diff
path: root/main.c
blob: 8f61750f6cda8c71f72928460c5045f63dba2227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include "emulator.h"

int main(int argc, char** argv)
{
    (void) argc;
    (void) argv;

    printf("Hello brother!\n");

    return 0;
}