summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/smc91c9x.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/smc91c9x.h')
-rw-r--r--src/devices/machine/smc91c9x.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/devices/machine/smc91c9x.h b/src/devices/machine/smc91c9x.h
index c74a39594ab..79fb52fcd0d 100644
--- a/src/devices/machine/smc91c9x.h
+++ b/src/devices/machine/smc91c9x.h
@@ -18,7 +18,6 @@
class smc91c9x_device : public device_t,public device_network_interface
{
public:
- template <class Object> devcb_base &set_irq_callback(Object &&cb) { return m_irq_handler.set_callback(std::forward<Object>(cb)); }
auto irq_handler() { return m_irq_handler.bind(); }
DECLARE_READ16_MEMBER( read );
@@ -120,16 +119,4 @@ DECLARE_DEVICE_TYPE(SMC91C96, smc91c96_device)
DEVICE CONFIGURATION MACROS
***************************************************************************/
-#define MCFG_SMC91C94_ADD(tag) \
- MCFG_DEVICE_ADD((tag), SMC91C94, 0)
-
-#define MCFG_SMC91C94_IRQ_CALLBACK(write) \
- downcast<smc91c94_device &>(*device).set_irq_callback(DEVCB_##write);
-
-#define MCFG_SMC91C96_ADD(tag) \
- MCFG_DEVICE_ADD((tag), SMC91C96, 0)
-
-#define MCFG_SMC91C96_IRQ_CALLBACK(write) \
- downcast<smc91c96_device &>(*device).set_irq_callback(DEVCB_##write);
-
#endif // MAME_MACHINE_SMC91C9X_H