summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/hd64610.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/hd64610.h')
-rw-r--r--src/emu/machine/hd64610.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/hd64610.h b/src/emu/machine/hd64610.h
index 4d25cef9a7a..da8856f3d7f 100644
--- a/src/emu/machine/hd64610.h
+++ b/src/emu/machine/hd64610.h
@@ -36,10 +36,10 @@
#define MCFG_HD64610_OUT_IRQ_CB(_devcb) \
devcb = &hd64610_device::set_out_irq_callback(*device, DEVCB2_##_devcb);
-
+
#define MCFG_HD64610_OUT_1HZ_CB(_devcb) \
devcb = &hd64610_device::set_out_1hz_callback(*device, DEVCB2_##_devcb);
-
+
//**************************************************************************
// TYPE DEFINITIONS
@@ -54,7 +54,7 @@ class hd64610_device : public device_t,
public:
// construction/destruction
hd64610_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
-
+
template<class _Object> static devcb2_base &set_out_irq_callback(device_t &device, _Object object) { return downcast<hd64610_device &>(device).m_out_irq_cb.set_callback(object); }
template<class _Object> static devcb2_base &set_out_1hz_callback(device_t &device, _Object object) { return downcast<hd64610_device &>(device).m_out_1hz_cb.set_callback(object); }