summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2023-12-25 15:03:22 +0100
committerLoic Guegan <loic.guegan@mailbox.org>2023-12-25 15:03:22 +0100
commitc6ddcbe2bd529f2310e312559556aedbf896ec33 (patch)
treecdf7a0d75817feb4739fb093cc767a6024606904 /src/main.c
parent5a6aecc0f564b17ed48f2754c2e6bf60334e9370 (diff)
Minor changes
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();