summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/duet16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/duet16.cpp')
-rw-r--r--src/mame/drivers/duet16.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/duet16.cpp b/src/mame/drivers/duet16.cpp
index 54d3e4b246e..e008bd8283a 100644
--- a/src/mame/drivers/duet16.cpp
+++ b/src/mame/drivers/duet16.cpp
@@ -111,8 +111,7 @@ void duet16_state::fdcctrl_w(u8 data)
m_fd[0]->get_device()->mon_w(!BIT(data, 0));
m_fd[1]->get_device()->mon_w(!BIT(data, 0));
- if(!BIT(data, 1))
- m_fdc->soft_reset();
+ m_fdc->reset_w(!BIT(data, 1));
// TODO: bit 3 = LSPD
}