Minor changes

This commit is contained in:
Loïc Guégan 2023-12-25 21:37:35 +01:00
parent f5e5ca4f3c
commit f1c3a67294
2 changed files with 2 additions and 2 deletions

BIN
roms/games/paddles.ch8 Normal file

Binary file not shown.

View file

@ -13,7 +13,7 @@ int main(int argc, char *argv[])
// Initialize
MemInit();
MemLoadROM("../roms/chip8-test-suite/6-keypad.ch8");
MemLoadROM("../roms/games/paddles.ch8");
ScreenInit(800,400);
VCPUInit();
@ -21,7 +21,7 @@ int main(int argc, char *argv[])
int i=0;
while (!WindowShouldClose()){
for(int i=0;i<50;i++){
for(int i=0;i<30;i++){
VCPUFetch();
VCPUDecode();
VCPUExecute();