summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/t6721a.h
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-12-18 16:15:29 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-12-18 16:16:05 +0100
commit2e5e818fb943875c83a74010cfdf4417934b58bb (patch)
tree8d984bc8ea028391938f0d34aac97b044e663b02 /src/devices/sound/t6721a.h
parent4eadb515d1a2ec4d905014e1ff115d2e336e9d0b (diff)
-bus/a7800/a78_slot, bus/astrocde/exp, slot, pc_joy/pc_joy, vcs/vcs_slot, : Removed MCFG macros. [Ryan Holtz]
-bus/a7800/hiscore, xboard, isa/gblaster, sb16, sblaster, ssi2001, stereo_fx, bus/msx_cart/moonsound: Removed MACHINE_CONFIG macros. [Ryan Holtz] -sound/astrocde, es5506, qs1000, saa1099, t6721a, tc8830f, tiaintf, tms3615, upd7752, ymf278b, ymz280b: Removed MCFG macros. [Ryan Holtz] -video/ef9369: Removed MCFG macros. [Ryan Holtz] -drivers/a2600, a7800, astrocde, astrohome, bingor, bishi, eolith, esqasr, esqmr, fuukifg3, ghosteo, guab, jpmsys5, limenko, lordgun, macrossp, mastboy, mpu4vid, psikyo, psikyo4, psikyosh, samcoupe, ssv, timeplt, vamphalf, vegaeo, xorworld: Removed MCFG macros. [Ryan Holtz] -drivers/cave: Removed MCFG macros and moved common config into common functions. [Ryan Holtz] -drivers/tourtabl: Removed MCFG macros and corrected CPU type. [Ryan Holtz]
Diffstat (limited to 'src/devices/sound/t6721a.h')
-rw-r--r--src/devices/sound/t6721a.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/devices/sound/t6721a.h b/src/devices/sound/t6721a.h
index 4fd78923dd0..0342cbaad84 100644
--- a/src/devices/sound/t6721a.h
+++ b/src/devices/sound/t6721a.h
@@ -35,27 +35,6 @@
#pragma once
-
-
-
-//**************************************************************************
-// INTERFACE CONFIGURATION MACROS
-//**************************************************************************
-
-#define MCFG_T6721A_EOS_HANDLER(_eos) \
- downcast<t6721a_device *>(device)->set_eos_callback(DEVCB_##_eos);
-
-#define MCFG_T6721A_PHI2_HANDLER(_phi2) \
- downcast<t6721a_device *>(device)->set_phi2_callback(DEVCB_##_phi2);
-
-#define MCFG_T6721A_DTRD_HANDLER(_dtrd) \
- downcast<t6721a_device *>(device)->set_dtrd_callback(DEVCB_##_dtrd);
-
-#define MCFG_T6721A_APD_HANDLER(_apd) \
- downcast<t6721a_device *>(device)->set_apd_callback(DEVCB_##_apd);
-
-
-
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
@@ -69,10 +48,6 @@ public:
t6721a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// static configuration helpers
- template <class Object> devcb_base &set_eos_callback(Object &&eos) { return m_write_eos.set_callback(std::forward<Object>(eos)); }
- template <class Object> devcb_base &set_phi2_callback(Object &&phi2) { return m_write_phi2.set_callback(std::forward<Object>(phi2)); }
- template <class Object> devcb_base &set_dtrd_callback(Object &&dtrd) { return m_write_dtrd.set_callback(std::forward<Object>(dtrd)); }
- template <class Object> devcb_base &set_apd_callback(Object &&apd) { return m_write_apd.set_callback(std::forward<Object>(apd)); }
auto eos_handler() { return m_write_eos.bind(); }
auto phi2_handler() { return m_write_phi2.bind(); }
auto dtrd_handler() { return m_write_dtrd.bind(); }