diff options
author | 2016-04-14 21:20:49 -0400 | |
---|---|---|
committer | 2016-04-14 21:20:49 -0400 | |
commit | 34be7d416603f0601877f208e6250dae416a92b2 (patch) | |
tree | 5e15f2cc717eaff6dbb28c9b94c6377c88d5c566 /src/emu/disound.h | |
parent | b5486236918e8565b27e79a99d7c3112f6cff00e (diff) |
Eliminate device_t::static_config, a type-unsafe legacy feature.
Rewrite or remove every last instance of MCFG_DEVICE_CONFIG and its two aliases, including within comments and dead code.
Make the Z80/Z180 daisy chain an interface that interfaces with the existing interface. Z8000 has been hooked up to this as well (p8000_16 already configures it), but currently does nothing with it.
Diffstat (limited to 'src/emu/disound.h')
-rw-r--r-- | src/emu/disound.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/disound.h b/src/emu/disound.h index 6ee07690c92..055f59d921e 100644 --- a/src/emu/disound.h +++ b/src/emu/disound.h @@ -42,9 +42,6 @@ const int AUTO_ALLOC_INPUT = 65535; #define MCFG_SOUND_REPLACE(_tag, _type, _clock) \ MCFG_DEVICE_REPLACE(_tag, _type, _clock) -#define MCFG_SOUND_CONFIG(_config) \ - MCFG_DEVICE_CONFIG(_config) - #define MCFG_SOUND_ROUTE(_output, _target, _gain) \ device_sound_interface::static_add_route(*device, _output, _target, _gain); #define MCFG_SOUND_ROUTE_EX(_output, _target, _gain, _input) \ |