Merge pull request #583 from nsx0r/patch-21

fixed NES mapper 203
This commit is contained in:
sanni 2022-10-24 16:36:50 +02:00 committed by GitHub
commit 9cabf64a0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3534,10 +3534,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);
}
}