blob: 48d35ee152fbaa9d70a6930cd44d59e5fe2560d8 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#include <stdio.h>
#include <unistd.h>
#include <config.h>
#include <emulator.h>
int main(int argc, char** argv);
void show_help();
int main(int argc, char** argv)
{
if(argc < 2)
{
show_help();
return 1;
}
Emulator emulator;
if(emulator_load_rom(&emulator, argv[1]) != 0)
return 2;
printf("Hello brother!\n");
for(int i = 0; i < sizeof(emulator.memory); ++i)
{
printf("%c ", emulator.memory[i]);
}
putchar('\n');
while(emulator.is_on)
{
emulator_tick(&emulator);
usleep(1000000 / INSTRUCTIONS_PER_SECOND);
}
return 0;
}
void show_help()
{
printf("BAD USAGE! -> ./chip8_emulator [ROM]\n");
}
|