summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/amiga.h
diff options
context:
space:
mode:
author Alex W. Jackson <alex.w.jackson@gmail.com>2014-10-17 06:17:06 +0000
committer Alex W. Jackson <alex.w.jackson@gmail.com>2014-10-17 06:17:06 +0000
commit3b790258e94af12727caa11532cf48af7a4ad75f (patch)
tree66c4c4101d6908869db3425ee800656084754dbc /src/mame/includes/amiga.h
parent6ca10ab4fad89d3afeca32ca163edb592b17a6b3 (diff)
more devfind: [Alex Jackson]
Renamed rom_ptr_finder to region_ptr_finder after discussion with Aaron. First round of memory_region_finder to region_ptr_finder conversions. rf5c400: use a region_ptr_finder to find our sound ROM instead of looking up the region by hand in device_start(). Will probably start converting other sound devices to this pattern (other than the ones that use the memory system) if there are no problems or objections.
Diffstat (limited to 'src/mame/includes/amiga.h')
-rw-r--r--src/mame/includes/amiga.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mame/includes/amiga.h b/src/mame/includes/amiga.h
index 99d3bb08905..e8fb00f92eb 100644
--- a/src/mame/includes/amiga.h
+++ b/src/mame/includes/amiga.h
@@ -340,7 +340,6 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_overlay(*this, "overlay"),
- m_kickstart(*this, "kickstart"),
m_input_device(*this, "input"),
m_joy0dat_port(*this, "joy_0_dat"),
m_joy1dat_port(*this, "joy_1_dat"),
@@ -563,7 +562,6 @@ protected:
optional_device<palette_device> m_palette;
required_device<address_map_bank_device> m_overlay;
- optional_memory_region m_kickstart;
// i/o ports
optional_ioport m_input_device;