mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-13 08:25:05 +01:00
fixed mapper 30
tested working with multiple NES and FC carts using UNROM-512
This commit is contained in:
parent
ceba5d2856
commit
bb63d912c9
@ -3039,9 +3039,9 @@ void readPRG(boolean readrom) {
|
|||||||
banks = int_pow(2, prgsize);
|
banks = int_pow(2, prgsize);
|
||||||
for (int i = 0; i < banks; i++) { // 256K/512K
|
for (int i = 0; i < banks; i++) { // 256K/512K
|
||||||
if (flashfound)
|
if (flashfound)
|
||||||
write_prg_byte(0xC000, i); // Flashable
|
write_prg_byte(0xC000+i, i); // Flashable
|
||||||
else
|
else
|
||||||
write_prg_byte(0x8000, i); // Non-Flashable
|
write_prg_byte(0x8000+i, i); // Non-Flashable
|
||||||
for (word address = 0x0; address < 0x4000; address += 512) { // 16K Banks ($8000-$BFFF)
|
for (word address = 0x0; address < 0x4000; address += 512) { // 16K Banks ($8000-$BFFF)
|
||||||
dumpPRG(base, address);
|
dumpPRG(base, address);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user