bbc_acorn1770: Use new mr_w handler to reset FDC (nw)

This commit is contained in:
AJR 2019-06-13 09:29:24 -04:00
parent 943b904171
commit 021e2c5332

View File

@ -248,7 +248,7 @@ void bbc_acorn1770_device::write(offs_t offset, uint8_t data)
m_fdc_ie = !BIT(data, 4);
// bit 5: reset
if (!BIT(data, 5)) m_fdc->soft_reset();
m_fdc->mr_w(BIT(data, 5));
}
}