diff --git a/src/emu/bus/msx_slot/panasonic08.c b/src/emu/bus/msx_slot/panasonic08.c index f2c95c85c5f..38f255d9978 100644 --- a/src/emu/bus/msx_slot/panasonic08.c +++ b/src/emu/bus/msx_slot/panasonic08.c @@ -126,7 +126,7 @@ READ8_MEMBER(msx_slot_panasonic08_device::read) WRITE8_MEMBER(msx_slot_panasonic08_device::write) { - if ((offset & 0xc000) == 0x8000) + if ((offset & 0xc000) == 0x8000 || (offset & 0xc000) == 0x0000) { UINT8 bank = m_selected_bank[offset >> 13]; if (bank >= 0x80 && bank < 0x84) // Are these banks were sram is present? Mirroring? diff --git a/src/mess/drivers/msx.c b/src/mess/drivers/msx.c index 27a659e7956..cffc25bcd33 100644 --- a/src/mess/drivers/msx.c +++ b/src/mess/drivers/msx.c @@ -47,10 +47,6 @@ ** - expert3i: IDE not emulated ** - expert3t: Turbo not emulated ** - expertac: Does not boot -** - fsa1wx: Firmware not emulated -** - fsa1wx: Floppy not emulated -** - fsa1wxa: Firmware not emulated -** - fsa1wxa: Floppy not emulated ** - fsa1gt: Add Turbo-R support ** - fsa1st: Add Turbo-R support **