summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/hd64610.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
commitfec65e0b5766ade69e086d1c5b859d97494fce56 (patch)
treec22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/machine/hd64610.h
parent30d94e51c53f30187a1bc565ef33e4744319790e (diff)
Cleanups and version bumpmame0153
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); }