summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ym3802.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ym3802.h')
-rw-r--r--src/devices/machine/ym3802.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ym3802.h b/src/devices/machine/ym3802.h
index 4b05098fc7d..f1f827cb619 100644
--- a/src/devices/machine/ym3802.h
+++ b/src/devices/machine/ym3802.h
@@ -24,10 +24,10 @@
#include <queue>
#define MCFG_YM3802_IRQ_HANDLER(_devcb) \
- devcb = &downcast<ym3802_device &>(*device).set_irq_handler(DEVCB_##_devcb);
+ downcast<ym3802_device &>(*device).set_irq_handler(DEVCB_##_devcb);
#define MCFG_YM3802_TXD_HANDLER(_devcb) \
- devcb = &downcast<ym3802_device &>(*device).set_txd_handler(DEVCB_##_devcb);
+ downcast<ym3802_device &>(*device).set_txd_handler(DEVCB_##_devcb);
class ym3802_device : public device_t, public device_serial_interface
{