fixed NES mapper 203

fixed NES mapper 203
This commit is contained in:
nsx0r 2022-10-24 15:04:51 +02:00 committed by GitHub
parent 820fceef29
commit afe7440ead
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3523,10 +3523,10 @@ void readPRG(boolean readrom) {
break;
case 203:
banks = int_pow(2, prgsize) / 2;
banks = int_pow(2, prgsize);
for (int i = 0; i < banks; i++) {
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);
}
}