From 11bbc84c31363ef3722322e182b646027f602d9f Mon Sep 17 00:00:00 2001 From: Nigel Barnes Date: Tue, 8 Sep 2015 00:50:58 +0100 Subject: [PATCH] bbc: fixed wd177x reset on master series (nw) --- src/mess/machine/bbc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mess/machine/bbc.c b/src/mess/machine/bbc.c index 2027a0f76c0..88ced246f43 100644 --- a/src/mess/machine/bbc.c +++ b/src/mess/machine/bbc.c @@ -1563,7 +1563,7 @@ WRITE8_MEMBER(bbc_state::bbcm_wd1770l_write) //logerror("Drive control %d \n", data); // bit 2: reset - if (!BIT(data, 5)) m_wd1770->reset(); + if (!BIT(data, 2)) m_wd1770->reset(); // bit 0, 1, 3: drive select if (BIT(data, 0)) floppy = m_wd1770->subdevice("0")->get_device(); @@ -1589,7 +1589,7 @@ WRITE8_MEMBER(bbc_state::bbcm_wd1772l_write) //logerror("Drive control %d \n", data); // bit 2: reset - if (!BIT(data, 5)) m_wd1772->reset(); + if (!BIT(data, 2)) m_wd1772->reset(); // bit 0, 1, 3: drive select if (BIT(data, 0)) floppy = m_wd1772->subdevice("0")->get_device();