(MESS) Used soft_reset(). (nw)

This commit is contained in:
Curt Coder 2013-11-17 18:21:33 +00:00
parent 1f7a06b3bd
commit 932d0281f2
3 changed files with 3 additions and 3 deletions

View File

@ -624,7 +624,7 @@ WRITE8_MEMBER( luxor_55_10828_device::ctrl_w )
m_wait_enable = BIT(data, 6); m_wait_enable = BIT(data, 6);
// FDC master reset // FDC master reset
if (!BIT(data, 7)) m_fdc->reset(); if (!BIT(data, 7)) m_fdc->soft_reset();
} }

View File

@ -588,7 +588,7 @@ WRITE8_MEMBER( e01_device::floppy_w )
m_fdc->dden_w(BIT(data, 4)); m_fdc->dden_w(BIT(data, 4));
// floppy master reset // floppy master reset
if (!BIT(data, 5)) m_fdc->reset(); if (!BIT(data, 5)) m_fdc->soft_reset();
// TODO floppy test // TODO floppy test

View File

@ -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); m_access_enbl = BIT(data, 6);
// master reset // master reset
if (!BIT(data, 7)) m_fdc->reset(); if (!BIT(data, 7)) m_fdc->soft_reset();
} }
else if (offset == 0xfbfa) // FUNCTION SEL else if (offset == 0xfbfa) // FUNCTION SEL
{ {