diff options
| author | Peter Fors <peter.fors@mindkiller.com> | 2025-05-03 01:00:10 +0200 |
|---|---|---|
| committer | Peter Fors <peter.fors@mindkiller.com> | 2025-05-03 01:00:10 +0200 |
| commit | 8ed5a368077388c676a4ef27cca9f3a58d91e484 (patch) | |
| tree | 7e96f35ac933fe97a69c2a8f66f8c22f7a9beb6a /mknes.c | |
| parent | 5808f00555c48e1cc1cc110af6a5cd73ddf13010 (diff) | |
cleanup and rewrite of memory_read()
Diffstat (limited to 'mknes.c')
| -rw-r--r-- | mknes.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -206,7 +206,7 @@ int main(int argc, char **argv) { // ines2_load(nstate, "data/0003/Flipull - An Exciting Cube Game (Japan) (En).zip"); // ines2_load(nstate, "data/0003/Friday the 13th (USA).zip"); // ines2_load(nstate, "data/0003/Ghostbusters (Japan).zip"); - // ines2_load(nstate, "data/0003/Gradius (USA).zip"); + ines2_load(nstate, "data/0003/Gradius (USA).zip"); // ines2_load(nstate, "data/0007/Battletoads (USA).zip"); // ines2_load(nstate, "data/0007/Beetlejuice (USA).zip"); // ines2_load(nstate, "data/0007/Cabal (USA).zip"); @@ -224,7 +224,7 @@ int main(int argc, char **argv) { uint32_t hi = nstate->mapper.prg_read(nstate, 0xfffd); nstate->cpu.pc = (hi << 8) | lo; -#if 1 +#if 0 for(uint32_t i = 0; i < 0x5000; ++ i) { while(!nstate->ppu.frame_ready) { // PROFILE_NAMED("nes emulator"); |
