diff options
author | 2010-12-31 21:18:45 +0000 | |
---|---|---|
committer | 2010-12-31 21:18:45 +0000 | |
commit | ba6d1bd8a355c8f0225b0a3093cd7f999152b505 (patch) | |
tree | 96196f3c9713b729d42bb1969109a9d517e93edd /src/emu/sound/cdp1863.h | |
parent | 80f4cfa981c948232d3c1ef2c65b18cc6005b651 (diff) |
MDRV_* -> MCFG_*
There hasn't been a machine driver for many years.
Diffstat (limited to 'src/emu/sound/cdp1863.h')
-rw-r--r-- | src/emu/sound/cdp1863.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/sound/cdp1863.h b/src/emu/sound/cdp1863.h index 5557cb2c8d4..db00349c809 100644 --- a/src/emu/sound/cdp1863.h +++ b/src/emu/sound/cdp1863.h @@ -29,9 +29,9 @@ DECLARE_LEGACY_SOUND_DEVICE(CDP1863, cdp1863); -#define MDRV_CDP1863_ADD(_tag, _clock1, _clock2) \ - MDRV_SOUND_ADD(_tag, CDP1863, _clock1) \ - MDRV_DEVICE_CONFIG_DATA32(cdp1863_config, clock2, _clock2) +#define MCFG_CDP1863_ADD(_tag, _clock1, _clock2) \ + MCFG_SOUND_ADD(_tag, CDP1863, _clock1) \ + MCFG_DEVICE_CONFIG_DATA32(cdp1863_config, clock2, _clock2) #define CDP1863_INTERFACE(name) \ const cdp1863_interface (name) = |