summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/hp_taco.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/hp_taco.h')
-rw-r--r--src/devices/machine/hp_taco.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/hp_taco.h b/src/devices/machine/hp_taco.h
index 3b926a0946a..42682aa76a4 100644
--- a/src/devices/machine/hp_taco.h
+++ b/src/devices/machine/hp_taco.h
@@ -16,13 +16,13 @@
#include "formats/hti_tape.h"
#define MCFG_TACO_IRQ_HANDLER(_devcb) \
- devcb = &downcast<hp_taco_device &>(*device).set_irq_handler(DEVCB_##_devcb);
+ downcast<hp_taco_device &>(*device).set_irq_handler(DEVCB_##_devcb);
#define MCFG_TACO_FLG_HANDLER(_devcb) \
- devcb = &downcast<hp_taco_device &>(*device).set_flg_handler(DEVCB_##_devcb);
+ downcast<hp_taco_device &>(*device).set_flg_handler(DEVCB_##_devcb);
#define MCFG_TACO_STS_HANDLER(_devcb) \
- devcb = &downcast<hp_taco_device &>(*device).set_sts_handler(DEVCB_##_devcb);
+ downcast<hp_taco_device &>(*device).set_sts_handler(DEVCB_##_devcb);
class hp_taco_device : public device_t ,
public device_image_interface