From b9c1f7ccb1f3d0c31beb8feeeb707a6df463e04b Mon Sep 17 00:00:00 2001 From: Wilbert Pol Date: Mon, 19 May 2014 20:05:12 +0000 Subject: [PATCH] (MESS) msx.c: Fixed firmware and booting on fsa1wx and fsa1wxa drivers. (nw) --- src/emu/bus/msx_slot/panasonic08.c | 2 +- src/mess/drivers/msx.c | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) 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 **