summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_hil/hp_hil.h
diff options
context:
space:
mode:
author dxl <41547105+hp9k@users.noreply.github.com>2018-10-12 03:28:25 +0200
committer R. Belmont <rb6502@users.noreply.github.com>2018-10-11 21:28:24 -0400
commit162c81c555297666c2aecb44b2866a7f63cbd46b (patch)
treee7ffd6a5faa78dead006d319555fc6e6962d65ad /src/devices/bus/hp_hil/hp_hil.h
parentd1009b850741d6a55a076a03d67f3d7b682f6628 (diff)
hp_hil: various fixes/improvements (#4124)
* hp_hil: use logmacro.h (nw) * add missing save_item()'s (nw) * hp_hil: remove MCFG (nw)
Diffstat (limited to 'src/devices/bus/hp_hil/hp_hil.h')
-rw-r--r--src/devices/bus/hp_hil/hp_hil.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/devices/bus/hp_hil/hp_hil.h b/src/devices/bus/hp_hil/hp_hil.h
index 6ed9d791ff7..4ee8984cdc9 100644
--- a/src/devices/bus/hp_hil/hp_hil.h
+++ b/src/devices/bus/hp_hil/hp_hil.h
@@ -79,17 +79,6 @@
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
-#define MCFG_HP_HIL_INT_CALLBACK(_devcb) \
- downcast<hp_hil_mlc_device &>(*device).set_int_callback(DEVCB_##_devcb);
-
-#define MCFG_HP_HIL_NMI_CALLBACK(_devcb) \
- downcast<hp_hil_mlc_device &>(*device).set_nmi_callback(DEVCB_##_devcb);
-
-#define MCFG_HP_HIL_SLOT_ADD(_mlc_tag, _tag, _slot_intf, _def_slot) \
- MCFG_DEVICE_ADD(_tag, HP_HIL_SLOT, 0) \
- MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \
- downcast<hp_hil_slot_device &>(*device).set_hp_hil_slot(this, _mlc_tag);
-
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
@@ -193,8 +182,6 @@ protected:
int m_device_id;
uint16_t m_device_id16;
- bool m_powerup;
- bool m_passthru;
private:
device_hp_hil_interface *m_next;