summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-04-07 10:27:50 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-04-07 10:27:50 +0000
commit5694a5e4a54810f676a7622deccbb0df2689c363 (patch)
treee67810f8f1dfab970ff479c8d00f2e53157f6721
parent68d1159efd1cc1c4238f7e0a6290a24611c5c173 (diff)
removed legacy macros to prevent their usage in future (no whatsnew)
-rw-r--r--src/emu/addrmap.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/emu/addrmap.h b/src/emu/addrmap.h
index fe77f2c2d92..3830d7d2bc9 100644
--- a/src/emu/addrmap.h
+++ b/src/emu/addrmap.h
@@ -520,8 +520,6 @@ void _class :: _name(address_map &map, const device_t &device) \
#define AM_READ16_LEGACY(_handler, _unitmask) \
curentry->set_handler(_handler, #_handler, _unitmask); \
-#define AM_READ32_LEGACY(_handler, _unitmask) \
- curentry->set_handler(_handler, #_handler, _unitmask); \
// legacy space writes
@@ -531,11 +529,7 @@ void _class :: _name(address_map &map, const device_t &device) \
#define AM_WRITE8_LEGACY(_handler, _unitmask) \
curentry->set_handler(_handler, #_handler, _unitmask); \
-#define AM_WRITE16_LEGACY(_handler, _unitmask) \
- curentry->set_handler(_handler, #_handler, _unitmask); \
-#define AM_WRITE32_LEGACY(_handler, _unitmask) \
- curentry->set_handler(_handler, #_handler, _unitmask); \
// legacy space reads/writes
@@ -559,11 +553,7 @@ void _class :: _name(address_map &map, const device_t &device) \
#define AM_DEVREAD8_LEGACY(_tag, _handler, _unitmask) \
curentry->set_handler(device, _tag, _handler, #_handler, _unitmask); \
-#define AM_DEVREAD16_LEGACY(_tag, _handler, _unitmask) \
- curentry->set_handler(device, _tag, _handler, #_handler, _unitmask); \
-#define AM_DEVREAD32_LEGACY(_tag, _handler, _unitmask) \
- curentry->set_handler(device, _tag, _handler, #_handler, _unitmask); \
// legacy device writes
@@ -576,8 +566,6 @@ void _class :: _name(address_map &map, const device_t &device) \
#define AM_DEVWRITE16_LEGACY(_tag, _handler, _unitmask) \
curentry->set_handler(device, _tag, _handler, #_handler, _unitmask); \
-#define AM_DEVWRITE32_LEGACY(_tag, _handler, _unitmask) \
- curentry->set_handler(device, _tag, _handler, #_handler, _unitmask); \
// legacy device reads/writes
@@ -774,7 +762,6 @@ void _class :: _name(address_map &map, const device_t &device) \
#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_DEVREAD_LEGACY(_tag, _read) AM_DEVREAD_LEGACY(_tag, _read) AM_WRITEONLY
#define AM_RAM_DEVWRITE_LEGACY(_tag, _write) AM_READONLY AM_DEVWRITE_LEGACY(_tag, _write)
#define AM_BASE_SIZE(_base, _size) AM_BASE(_base) AM_SIZE(_size)