mirror of https://github.com/snes9xgit/snes9x.git
Fix MMC bank register bit 7, restore 64mbit ExLoRom map (FuSoYa)
This commit is contained in:
parent
52c516d549
commit
d8e5d090aa
|
@ -3033,7 +3033,7 @@ void CMemory::Map_JumboLoROMMap (void)
|
|||
map_System();
|
||||
|
||||
map_lorom_offset(0x00, 0x3f, 0x8000, 0xffff, CalculatedSize - 0x400000, 0x400000);
|
||||
map_lorom_offset(0x40, 0x7f, 0x0000, 0xffff, CalculatedSize - 0x400000, 0x400000);
|
||||
map_lorom_offset(0x40, 0x7f, 0x0000, 0xffff, CalculatedSize - 0x600000, 0x600000);
|
||||
map_lorom_offset(0x80, 0xbf, 0x8000, 0xffff, 0x400000, 0);
|
||||
map_lorom_offset(0xc0, 0xff, 0x0000, 0xffff, 0x400000, 0x200000);
|
||||
|
||||
|
|
2
sa1.cpp
2
sa1.cpp
|
@ -308,7 +308,7 @@ static void S9xSetSA1MemMap (uint32 which1, uint8 map)
|
|||
|
||||
for (int c = 0; c < 0x200; c += 16)
|
||||
{
|
||||
uint8 *block = &Memory.ROM[(map & 7) * 0x100000 + (c << 11) - 0x8000];
|
||||
uint8 *block = &Memory.ROM[(((map & 0x80) ? map : which1) & 7) * 0x100000 + (c << 11) - 0x8000];
|
||||
for (int i = c + 8; i < c + 16; i++)
|
||||
Memory.Map[start2 + i] = SA1.Map[start2 + i] = block;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue