summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/tandy2k.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2020-10-03 14:31:39 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2020-10-03 14:31:39 +1000
commitd1681a8ecef978ee34bafe24e95d34f25581e9c3 (patch)
tree958f96e617f2b5cb3c7c74536a14ad19d9a45be7 /src/mame/drivers/tandy2k.cpp
parentb7de847b6e5f259fa5c67b43951586204a6ae387 (diff)
parent9ac531e2b9aa690910cbeb35a14bd93fb001592b (diff)
Merge remote-tracking branch 'upstream/master' into master
Diffstat (limited to 'src/mame/drivers/tandy2k.cpp')
-rw-r--r--src/mame/drivers/tandy2k.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mame/drivers/tandy2k.cpp b/src/mame/drivers/tandy2k.cpp
index 3cac1126519..6785eb42d67 100644
--- a/src/mame/drivers/tandy2k.cpp
+++ b/src/mame/drivers/tandy2k.cpp
@@ -157,10 +157,7 @@ void tandy2k_state::enable_w(uint8_t data)
m_pit->write_gate2(BIT(data, 4));
// FDC reset
- if (!BIT(data, 5))
- {
- m_fdc->soft_reset();
- }
+ m_fdc->reset_w(!BIT(data, 5));
// timer 0 enable
m_maincpu->tmrin0_w(BIT(data, 6));