summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/guab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/guab.cpp')
-rw-r--r--src/mame/drivers/guab.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/guab.cpp b/src/mame/drivers/guab.cpp
index 5414121802f..03a1690f7f9 100644
--- a/src/mame/drivers/guab.cpp
+++ b/src/mame/drivers/guab.cpp
@@ -546,8 +546,8 @@ MACHINE_CONFIG_START(guab_state::guab)
ACIA6850(config, "acia6850_2", 0);
// floppy
- MCFG_DEVICE_ADD("fdc", WD1773, 8000000)
- MCFG_WD_FDC_DRQ_CALLBACK(INPUTLINE("maincpu", 6))
+ WD1773(config, m_fdc, 8000000);
+ m_fdc->drq_wr_callback().set_inputline(m_maincpu, 6);
MCFG_FLOPPY_DRIVE_ADD("fdc:0", guab_floppies, "dd", guab_state::floppy_formats)
MCFG_SLOT_FIXED(true)