summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/wd2010.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/wd2010.cpp')
-rw-r--r--src/devices/machine/wd2010.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/wd2010.cpp b/src/devices/machine/wd2010.cpp
index c25aa538df3..59dfd16128d 100644
--- a/src/devices/machine/wd2010.cpp
+++ b/src/devices/machine/wd2010.cpp
@@ -28,11 +28,11 @@ UNIMPLEMENTED FEATURES :
the intended instruction flow. Some loops were omitted!
USAGE: tie WF (write fault) to ground if not needed:
- MCFG_WD2010_IN_WF_CB(GND)
+ in_wf_callback().set_constant(0)
Other signals should be set to VCC if not serviced:
- MCFG_WD2010_IN_DRDY_CB(VCC) // DRIVE READY = VCC
- MCFG_WD2010_IN_SC_CB(VCC) // SEEK COMPLETE = VCC
+ in_drdy_callback().set_constant(1) // DRIVE READY = VCC
+ in_sc_callback().set_constant(1) // SEEK COMPLETE = VCC
**********************************************************************/
#include "emu.h"