summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i8087.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/i8087.h')
-rw-r--r--src/devices/machine/i8087.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/i8087.h b/src/devices/machine/i8087.h
index 62c847e2cbf..e0d5ab7e87e 100644
--- a/src/devices/machine/i8087.h
+++ b/src/devices/machine/i8087.h
@@ -12,10 +12,10 @@
downcast<i8087_device &>(*device).set_data_width(_data_width);
#define MCFG_I8087_INT_HANDLER(_devcb) \
- devcb = &downcast<i8087_device &>(*device).set_int(DEVCB_##_devcb);
+ downcast<i8087_device &>(*device).set_int(DEVCB_##_devcb);
#define MCFG_I8087_BUSY_HANDLER(_devcb) \
- devcb = &downcast<i8087_device &>(*device).set_busy(DEVCB_##_devcb);
+ downcast<i8087_device &>(*device).set_busy(DEVCB_##_devcb);
DECLARE_DEVICE_TYPE(I8087, i8087_device)