removed some unused AM_*_LEGACY macros (nw)

This commit is contained in:
Oliver Stöneberg 2013-01-05 02:23:32 +00:00
parent a33f00ff55
commit 6ef5bb7da2

View File

@ -450,9 +450,6 @@ void _class :: _name(::address_map &map, device_t &device) \
#define AM_READ8_LEGACY(_handler, _unitmask) \
curentry->set_handler(_handler, #_handler, _unitmask); \
#define AM_READ16_LEGACY(_handler, _unitmask) \
curentry->set_handler(_handler, #_handler, _unitmask); \
// legacy space writes
@ -496,9 +493,6 @@ void _class :: _name(::address_map &map, device_t &device) \
#define AM_DEVWRITE8_LEGACY(_tag, _handler, _unitmask) \
curentry->set_handler(device, write8_delegate(&_handler, #_handler, _tag, (device_t *)0), _unitmask); \
#define AM_DEVWRITE16_LEGACY(_tag, _handler, _unitmask) \
curentry->set_handler(device, write16_delegate(&_handler, #_handler, _tag, (device_t *)0), _unitmask); \
// legacy device reads/writes
@ -511,9 +505,6 @@ void _class :: _name(::address_map &map, device_t &device) \
#define AM_DEVREADWRITE16_LEGACY(_tag, _rhandler, _whandler, _unitmask) \
curentry->set_handler(device, read16_delegate(&_rhandler, #_rhandler, _tag, (device_t *)0), write16_delegate(&_whandler, #_whandler, _tag, (device_t *)0), _unitmask); \
#define AM_DEVREADWRITE32_LEGACY(_tag, _rhandler, _whandler, _unitmask) \
curentry->set_handler(device, read32_delegate(&_rhandler, #_rhandler, _tag, (device_t *)0), write32_delegate(&_whandler, #_whandler, _tag, (device_t *)0), _unitmask); \
// driver data reads
#define AM_READ(_handler) \
@ -680,7 +671,6 @@ void _class :: _name(::address_map &map, device_t &device) \
#define AM_RAM_DEVREAD(_tag, _class, _read) AM_DEVREAD(_tag, _class, _read) AM_WRITEONLY
#define AM_RAM_DEVWRITE(_tag, _class, _write) AM_READONLY AM_DEVWRITE(_tag, _class, _write)
#define AM_RAM_READ_LEGACY(_read) AM_READ_LEGACY(_read) AM_WRITEONLY
#define AM_RAM_WRITE_LEGACY(_write) AM_READONLY AM_WRITE_LEGACY(_write)
#define AM_RAM_DEVWRITE_LEGACY(_tag, _write) AM_READONLY AM_DEVWRITE_LEGACY(_tag, _write)