summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/disound.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/disound.h')
-rw-r--r--src/emu/disound.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/emu/disound.h b/src/emu/disound.h
index 1a13c7613fa..37a7df462be 100644
--- a/src/emu/disound.h
+++ b/src/emu/disound.h
@@ -31,20 +31,6 @@ constexpr int AUTO_ALLOC_INPUT = 65535;
//**************************************************************************
-// INTERFACE CONFIGURATION MACROS
-//**************************************************************************
-
-#define MCFG_SOUND_ROUTE(_output, _target, ...) \
- dynamic_cast<device_sound_interface &>(*device).add_route(_output, _target, __VA_ARGS__);
-
-#define MCFG_SOUND_ROUTES_RESET() \
- dynamic_cast<device_sound_interface &>(*device).reset_routes();
-
-#define MCFG_MIXER_ROUTE(_output, _target, _gain, _mixoutput) \
- dynamic_cast<device_sound_interface &>(*device).add_route(_output, _target, _gain, AUTO_ALLOC_INPUT, _mixoutput);
-
-
-//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************