mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-13 08:25:05 +01:00
fixed NES mapper 203
fixed NES mapper 203
This commit is contained in:
parent
820fceef29
commit
afe7440ead
@ -3523,10 +3523,10 @@ void readPRG(boolean readrom) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 203:
|
case 203:
|
||||||
banks = int_pow(2, prgsize) / 2;
|
banks = int_pow(2, prgsize);
|
||||||
for (int i = 0; i < banks; i++) {
|
for (int i = 0; i < banks; i++) {
|
||||||
write_prg_byte(0x8000, (i & 0x1F) << 2);
|
write_prg_byte(0x8000, (i & 0x1F) << 2);
|
||||||
for (word address = 0x0; address < 0x8000; address += 512) {
|
for (word address = 0x0; address < 0x4000; address += 512) {
|
||||||
dumpPRG(base, address);
|
dumpPRG(base, address);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user