diff options
| author | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-25 15:03:22 +0100 |
|---|---|---|
| committer | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-25 15:03:22 +0100 |
| commit | c6ddcbe2bd529f2310e312559556aedbf896ec33 (patch) | |
| tree | cdf7a0d75817feb4739fb093cc767a6024606904 /src/main.c | |
| parent | 5a6aecc0f564b17ed48f2754c2e6bf60334e9370 (diff) | |
Minor changes
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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(); |
