summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/addrmap.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-06-09 19:14:19 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-06-09 19:26:41 -0400
commitc84a6b2530bb91c984b3d1ed33bac018baca8407 (patch)
treea81b46af7f935473ddda402975f518cb5d3acaed /src/emu/addrmap.h
parenta610524c5f8907897905ce109fc714b2201183de (diff)
Make submaps work with address-shifted spaces (nw)
Note that submaps are now assumed to use an address shift of 0. It is possible, though unlikely, for this to cause some breakage.
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 9256d22f65d..5a256c735fe 100644
--- a/src/emu/addrmap.h
+++ b/src/emu/addrmap.h
@@ -480,7 +480,7 @@ public:
offs_t m_globalmask; // global mask
simple_list<address_map_entry> m_entrylist; // list of entries
- void import_submaps(running_machine &machine, device_t &owner, int data_width, endianness_t endian);
+ void import_submaps(running_machine &machine, device_t &owner, int data_width, endianness_t endian, int addr_shift);
void map_validity_check(validity_checker &valid, int spacenum) const;
};