summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i8214.h
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-08-28 16:01:05 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-08-29 19:07:51 +0200
commit8ac98fea56b7c409f5917d78ceafa6bb7a97b653 (patch)
treefdbb7c373b0d0d437b8d906b997134a381e8620e /src/devices/machine/i8214.h
parent5d0aef3b01784fc567b2deb2457abd322d8c0a56 (diff)
i2cmem,i7220,i80130,i8087,i8212,i8214,i82371sb,i8243: Removed MCFG, nw
Diffstat (limited to 'src/devices/machine/i8214.h')
-rw-r--r--src/devices/machine/i8214.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/devices/machine/i8214.h b/src/devices/machine/i8214.h
index dc609c24f15..6181fe05d81 100644
--- a/src/devices/machine/i8214.h
+++ b/src/devices/machine/i8214.h
@@ -26,34 +26,12 @@
#pragma once
-
-
-///*************************************************************************
-// INTERFACE CONFIGURATION MACROS
-///*************************************************************************
-
-#define MCFG_I8214_INT_CALLBACK(_write) \
- downcast<i8214_device &>(*device).set_int_wr_callback(DEVCB_##_write);
-
-#define MCFG_I8214_ENLG_CALLBACK(_write) \
- downcast<i8214_device &>(*device).set_enlg_wr_callback(DEVCB_##_write);
-
-
-
-///*************************************************************************
-// TYPE DEFINITIONS
-///*************************************************************************
-
-// ======================> i8214_device
-
class i8214_device : public device_t
{
public:
// construction/destruction
i8214_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- template <class Object> devcb_base &set_int_wr_callback(Object &&cb) { return m_write_int.set_callback(std::forward<Object>(cb)); }
- template <class Object> devcb_base &set_enlg_wr_callback(Object &&cb) { return m_write_enlg.set_callback(std::forward<Object>(cb)); }
auto int_wr_callback() { return m_write_int.bind(); }
auto enlg_wr_callback() { return m_write_enlg.bind(); }