Minor changes

This commit is contained in:
Loïc Guégan 2023-12-25 19:19:09 +01:00
parent 41c8b2afb3
commit 048b41e20a
4 changed files with 8 additions and 2 deletions

6
roms/README.md Normal file
View file

@ -0,0 +1,6 @@
## Test roms information
Source:
- chip8-test-suite: https://github.com/Timendus/chip8-test-suite
- chiptest.ch8: https://github.com/offstatic/chiptest/tree/master
- ibm.ch8: https://github.com/loktar00/chip8/tree/master/roms

BIN
roms/chiptest.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/5-quirks.ch8");
MemLoadROM("../roms/chiptest.ch8");
ScreenInit(800,400);
VCPUInit();

View file

@ -227,7 +227,7 @@ void VCPUExecute(){
break;
case 0x29:
// TODO
State.I=ADDR_FONT+State.V[State.X];
break;
case 0x33: