mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
(MESS) Used soft_reset(). (nw)
This commit is contained in:
parent
1f7a06b3bd
commit
932d0281f2
@ -624,7 +624,7 @@ WRITE8_MEMBER( luxor_55_10828_device::ctrl_w )
|
||||
m_wait_enable = BIT(data, 6);
|
||||
|
||||
// FDC master reset
|
||||
if (!BIT(data, 7)) m_fdc->reset();
|
||||
if (!BIT(data, 7)) m_fdc->soft_reset();
|
||||
}
|
||||
|
||||
|
||||
|
@ -588,7 +588,7 @@ WRITE8_MEMBER( e01_device::floppy_w )
|
||||
m_fdc->dden_w(BIT(data, 4));
|
||||
|
||||
// floppy master reset
|
||||
if (!BIT(data, 5)) m_fdc->reset();
|
||||
if (!BIT(data, 5)) m_fdc->soft_reset();
|
||||
|
||||
// TODO floppy test
|
||||
|
||||
|
@ -448,7 +448,7 @@ void s100_dj2db_device::s100_mwrt_w(address_space &space, offs_t offset, UINT8 d
|
||||
m_access_enbl = BIT(data, 6);
|
||||
|
||||
// master reset
|
||||
if (!BIT(data, 7)) m_fdc->reset();
|
||||
if (!BIT(data, 7)) m_fdc->soft_reset();
|
||||
}
|
||||
else if (offset == 0xfbfa) // FUNCTION SEL
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user