summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/addrmap.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-04-05 07:44:51 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-04-05 07:44:51 +0000
commit194397db29bbf4b5bbf1f22c8fb5a16c39fffa06 (patch)
tree5e6e746191732095345bc7a8ffa6fd4645e530fd /src/emu/addrmap.c
parent82a1191455181e8a74836a6f597a23f288be82d0 (diff)
Moved all drivers to using the paletteram helpers defined in the
driver_device base class. The palette base is now specified via an AM_SHARE of "paletteram" or "paletteram2". The driver_device base class now finds these pointers and places them in m_generic_paletteram_8/_16/_32 and m_generic_paletteram2_8/_16/_32. Removed machine.generic.paletteram*, and machine.generic entirely. Removed AM_BASE_GENERIC/AM_SIZE_GENERIC as they don't apply anymore. Changed required_/optional_shared_ptr to support set_target with base and size for manually configuring a shared pointer, and a new allocate method for dynamically allocating (and registering the memory for save states). A few subsequent cleanups are coming related to this, but wanted to get this in before the next modern push.
Diffstat (limited to 'src/emu/addrmap.c')
-rw-r--r--src/emu/addrmap.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/addrmap.c b/src/emu/addrmap.c
index e1bd5d7331e..631bf544267 100644
--- a/src/emu/addrmap.c
+++ b/src/emu/addrmap.c
@@ -60,8 +60,6 @@ address_map_entry::address_map_entry(address_map &map, offs_t start, offs_t end)
m_sizeptr(NULL),
m_baseptroffs_plus1(0),
m_sizeptroffs_plus1(0),
- m_genbaseptroffs_plus1(0),
- m_gensizeptroffs_plus1(0),
m_region(NULL),
m_rgnoffs(0),
m_rspace8(NULL),