summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/super80.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/super80.c')
-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();