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/machine/rtc65271.h | |
parent | 80f4cfa981c948232d3c1ef2c65b18cc6005b651 (diff) |
MDRV_* -> MCFG_*
There hasn't been a machine driver for many years.
Diffstat (limited to 'src/emu/machine/rtc65271.h')
-rw-r--r-- | src/emu/machine/rtc65271.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/rtc65271.h b/src/emu/machine/rtc65271.h index f2095acdefa..5572d91f785 100644 --- a/src/emu/machine/rtc65271.h +++ b/src/emu/machine/rtc65271.h @@ -14,9 +14,9 @@ struct _rtc65271_config }; -#define MDRV_RTC65271_ADD(_tag, _callback) \ - MDRV_DEVICE_ADD(_tag, RTC65271, 0) \ - MDRV_DEVICE_CONFIG_DATAPTR(rtc65271_config, interrupt_callback, _callback) +#define MCFG_RTC65271_ADD(_tag, _callback) \ + MCFG_DEVICE_ADD(_tag, RTC65271, 0) \ + MCFG_DEVICE_CONFIG_DATAPTR(rtc65271_config, interrupt_callback, _callback) UINT8 rtc65271_r(running_device *device, int xramsel, offs_t offset); |