Update NES.ino - fix mapper 115/248

Update NES.ino - fix mapper 115/248
This commit is contained in:
nsx0r 2025-02-22 16:19:02 +00:00 committed by GitHub
parent 5433749fa0
commit be1312c172
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2164,7 +2164,7 @@ void readPRG(bool readrom) {
write_prg_byte(0x6000, (i & 0x70) >> 4);
}
if ((mapper == 115) || (mapper == 248)) {
write_prg_byte(0x6000, (i & 0x10) << 2); // A18
write_prg_byte(0x6000, (i & 0x20) << 1); // A18
}
if (mapper == 116) {
write_prg_byte(0x4100, 0x01); // MMC3 mode
@ -3541,7 +3541,7 @@ void readCHR(bool readrom) {
write_prg_byte(0x6000, (i & 0x180) >> 3 | (i & 0x200) >> 7);
}
if ((mapper == 115) || (mapper == 248)) {
write_prg_byte(0x6000, (i & 0x100) >> 8); // A18
write_prg_byte(0x6001, (i & 0x100) >> 8); // A18
}
if (mapper == 116) {
write_prg_byte(0x4100, 0x01 | ((i & 0x100) >> 6)); // A18