summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 85dcb2c..8903eed 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2,12 +2,18 @@
#include "mem.h"
#include "vcpu.h"
+#include <stdio.h>
int main(int argc, char *argv[])
{
+ /* unsigned char byte=137; */
+ /* unsigned char u,t,h; */
+ /* VCPUDoubleDabble(byte,&u,&t,&h); */
+ /* printf("%d: %01d%01d%01d\n",byte,h,t,u); */
+ /* return 0; */
// Initialize
MemInit();
- MemLoadROM("../roms/logo_chip8.ch8");
+ MemLoadROM("../roms/chip8-test-suite/3-corax+.ch8");
ScreenInit(800,400);
VCPUInit();