mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
(MESS) msx.c: Fixed firmware and booting on fsa1wx and fsa1wxa drivers. (nw)
This commit is contained in:
parent
64f307a27b
commit
b9c1f7ccb1
@ -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?
|
||||
|
@ -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
|
||||
**
|
||||
|
Loading…
Reference in New Issue
Block a user