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/8255ppi.h | |
parent | 80f4cfa981c948232d3c1ef2c65b18cc6005b651 (diff) |
MDRV_* -> MCFG_*
There hasn't been a machine driver for many years.
Diffstat (limited to 'src/emu/machine/8255ppi.h')
-rw-r--r-- | src/emu/machine/8255ppi.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/machine/8255ppi.h b/src/emu/machine/8255ppi.h index c946b3d0b5b..c255460a826 100644 --- a/src/emu/machine/8255ppi.h +++ b/src/emu/machine/8255ppi.h @@ -19,13 +19,13 @@ DEVICE CONFIGURATION MACROS ***************************************************************************/ -#define MDRV_PPI8255_ADD(_tag, _intrf) \ - MDRV_DEVICE_ADD(_tag, PPI8255, 0) \ - MDRV_DEVICE_CONFIG(_intrf) +#define MCFG_PPI8255_ADD(_tag, _intrf) \ + MCFG_DEVICE_ADD(_tag, PPI8255, 0) \ + MCFG_DEVICE_CONFIG(_intrf) -#define MDRV_PPI8255_RECONFIG(_tag, _intrf) \ - MDRV_DEVICE_MODIFY(_tag) \ - MDRV_DEVICE_CONFIG(_intrf) +#define MCFG_PPI8255_RECONFIG(_tag, _intrf) \ + MCFG_DEVICE_MODIFY(_tag) \ + MCFG_DEVICE_CONFIG(_intrf) /*************************************************************************** |