Minor changes
This commit is contained in:
parent
41c8b2afb3
commit
048b41e20a
4 changed files with 8 additions and 2 deletions
6
roms/README.md
Normal file
6
roms/README.md
Normal 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
BIN
roms/chiptest.ch8
Normal file
Binary file not shown.
|
@ -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();
|
||||
|
|
|
@ -227,7 +227,7 @@ void VCPUExecute(){
|
|||
break;
|
||||
|
||||
case 0x29:
|
||||
// TODO
|
||||
State.I=ADDR_FONT+State.V[State.X];
|
||||
break;
|
||||
|
||||
case 0x33:
|
||||
|
|
Loading…
Add table
Reference in a new issue