summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine
diff options
context:
space:
mode:
author Robbbert <pac0446@bigpond.net.au>2015-05-29 21:17:14 +1000
committer Robbbert <pac0446@bigpond.net.au>2015-05-29 21:17:14 +1000
commit3e15c2da34c806a81a2534e8db5783bae04e1215 (patch)
treee1cb2e5b819459a2ac2d86fb452bf3e0cc411d16 /src/mess/machine
parentc35c1f8e5ccf65ab0d6cc44a9767a79066f384cb (diff)
wd_fdc & super80: allow ENMF line to be switched.
Diffstat (limited to 'src/mess/machine')
-rw-r--r--src/mess/machine/super80.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/super80.c b/src/mess/machine/super80.c
index 9e306c554ff..8b1944f132f 100644
--- a/src/mess/machine/super80.c
+++ b/src/mess/machine/super80.c
@@ -141,7 +141,7 @@ READ8_MEMBER( super80_state::port3e_r )
WRITE8_MEMBER( super80_state::port3f_w )
{
// m_fdc->58(BIT(data, 0)); 5/8 pin not emulated in wd_fdc
- m_fdc->set_unscaled_clock(BIT(data, 1) ? 2e6 : 1e6); // ENMF pin not emulated in wd_fdc
+ m_fdc->enmf_w(BIT(data,1));
floppy_image_device *floppy = NULL;
if (BIT(data, 2)) floppy = m_floppy0->get_device();