mirror of https://github.com/bsnes-emu/bsnes.git
Writes to SVBK should work before the boot ROM is disabled
This commit is contained in:
parent
5808d4485f
commit
0dcd233cbb
|
@ -1234,12 +1234,11 @@ static void write_high_memory(GB_gameboy_t *gb, uint16_t addr, uint8_t value)
|
|||
gb->io_registers[GB_IO_DMA] = value;
|
||||
return;
|
||||
case GB_IO_SVBK:
|
||||
if (!gb->cgb_mode) {
|
||||
return;
|
||||
}
|
||||
gb->cgb_ram_bank = value & 0x7;
|
||||
if (!gb->cgb_ram_bank) {
|
||||
gb->cgb_ram_bank++;
|
||||
if (gb->cgb_mode || (GB_is_cgb(gb) && !gb->boot_rom_finished)) {
|
||||
gb->cgb_ram_bank = value & 0x7;
|
||||
if (!gb->cgb_ram_bank) {
|
||||
gb->cgb_ram_bank++;
|
||||
}
|
||||
}
|
||||
return;
|
||||
case GB_IO_VBK:
|
||||
|
|
Loading…
Reference in New Issue