-
Notifications
You must be signed in to change notification settings - Fork 14
nes6502 - issue with mirrored memory #26
Comments
Hi @olduf - thanks for the detailed report. I'm new to the emulation space but as far as I can tell this is a real issue. addresses |
Apologies for the long time with no input; I'm very wishy-washy on this. On the one hand the tests in net are designed not to assume anything external to the CPU — including how addresses are decoded. On the other, the Ricoh 2A03 (/'NES 6502'): (i) is used (almost) exclusively in the NES; and (ii) includes the APU and some other parts in the chip, so the "external to the CPU" test is fuzzier than it should be. I think possibly a good compromise would be just to restrict all memory accesses in the NES-specific tests to the first 2kb of memory? Would that satisfy the problem adequately? |
Now that I've finished my cycle-accurate CPU emulator of this chip for the NES I feel more confident weighing in here. I think it could be an improvement to only use addresses that don't have special mapping behavior, but it invites a lot of complexity. I'm confused about why you're choosing the first 2KB (assuming this is However if we do acknowledge the memory mapping, then that invites a lot of additional complexity where we need to support mappers. I think the real issue is that the documentation could be more explicit (instead of implicit) about not choosing to respect memory mapping or any special cartridge mapping behavior, and I do like that this suite of tests allows me to properly isolate and unit test the CPU. Time and energy permitting, I'd like to find a suite of test roms and create some per-cycle truth data with a similar level of thoroughness found in this repo. (It's a fantastic repo!) |
The first 2kb runs to address
I'm suggesting I just get the generator silently to drop any test that happens to generate an access outside of the range [0x0000, 0x07ff] and let it keep going until there are the desired number of test cases. ... though more explicit documentation might also just be the correct fix. |
Hopefully in part resolves #26 albeit leaving open the question of what post hoc test filtering could be applied to create an appropriate quantity of tests that do correlate to a real NES's memory map.
So I've gone with "more explicit documentation" as the immediate fix, as per #37 but if I can persuade myself that an appropriate test filter — such as the proposed first-2kb-only, but possibly something else — would render the issue moot then I'll return to the topic. |
First thing, amazing project. Very useful for emulator development.
The CPU instructions I coded passed all the tests successfully with a simple memory management class.
With that done, I started implementing the memory mirroring of the NES CPU and that's when my test started failing.
In the NESDEV wiki CPU memory map, we see that the memory at
0x0000–0x07FF
and0x2000–0x2007
are each repeated multiple times.This means that multiple address should always have the same value (if I understand everything correctly). So:
0x0001
should contain the same value as0x0801
,0x1001
and0x1801
.0x2004
should contain the same value as0x200C
,0x2014
,0x201C
, ...,0x3FFC
.Examples of the issue:
00 6f 9f
, memory locations308
and4404
should have the same value (since308 % 0x800 == 4404 % 0x800
)00 88 2e
, memory locations12176
and13352
should have the same value (since12176 % 8 == 13352 % 8
)It would be nice not have to provide a different memory management class implementation in order to pass the tests.
Not sure how the test case are generated, but I could try making the change.
And if I'm wrong about this, sorry 😅 .
The text was updated successfully, but these errors were encountered: