summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/addrmap.h
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2011-11-06 11:06:58 +0000
committer Nathan Woods <npwoods@mess.org>2011-11-06 11:06:58 +0000
commitcdd0600db472ec86297d7df34e145069624f3455 (patch)
treeb558a8d95b11a95ef7af0a526383988c4122142d /src/emu/addrmap.h
parent36932b4c6ca54ce1510ff2ee8c1701c589d75822 (diff)
Added hot/cold attributes. Made the MAME executable 1% smaller by using the
cold attribute on setup functions
Diffstat (limited to 'src/emu/addrmap.h')
-rw-r--r--src/emu/addrmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/addrmap.h b/src/emu/addrmap.h
index 846bbba0066..fb82b2aa769 100644
--- a/src/emu/addrmap.h
+++ b/src/emu/addrmap.h
@@ -470,7 +470,7 @@ public:
#define ADDRESS_MAP_NAME(_name) construct_address_map_##_name
#define ADDRESS_MAP_START(_name, _space, _bits) \
-void ADDRESS_MAP_NAME(_name)(address_map &map, const device_t &device) \
+ATTR_COLD void ADDRESS_MAP_NAME(_name)(address_map &map, const device_t &device) \
{ \
typedef read##_bits##_delegate read_delegate; \
typedef write##_bits##_delegate write_delegate; \