summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mb8421.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mb8421.h')
-rw-r--r--src/devices/machine/mb8421.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/mb8421.h b/src/devices/machine/mb8421.h
index 705e4c0c1e7..e0ac6edd610 100644
--- a/src/devices/machine/mb8421.h
+++ b/src/devices/machine/mb8421.h
@@ -20,10 +20,10 @@
// note: INT pins are only available on MB84x1
// INTL is for the CPU on the left side, INTR for the one on the right
#define MCFG_MB8421_INTL_HANDLER(_devcb) \
- devcb = &downcast<mb8421_master_device &>(*device).set_intl_handler(DEVCB_##_devcb);
+ downcast<mb8421_master_device &>(*device).set_intl_handler(DEVCB_##_devcb);
#define MCFG_MB8421_INTR_HANDLER(_devcb) \
- devcb = &downcast<mb8421_master_device &>(*device).set_intr_handler(DEVCB_##_devcb);
+ downcast<mb8421_master_device &>(*device).set_intr_handler(DEVCB_##_devcb);
//**************************************************************************