summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/divebomb.h
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-06-27 14:32:24 +0100
committer hap <happppp@users.noreply.github.com>2018-06-27 15:32:24 +0200
commit6d6b562ffd0168791e9d8d363a07063e7090c0c6 (patch)
tree934c34bdc531c611fbf26d94bf58974510eeea2d /src/mame/includes/divebomb.h
parent8aa76c10113d44ab20e242ebdc4f2f69bc77b719 (diff)
more private member use in 'D, E, F, G' drivers (nw) (#3704)
* more private member use in 'D' drivers (nw) * same for 'E' drivers (nw) * and 'F' (nw) * 'G' (nw) (left galaxian/galaxold alone because I know somebody is looking at them)
Diffstat (limited to 'src/mame/includes/divebomb.h')
-rw-r--r--src/mame/includes/divebomb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/divebomb.h b/src/mame/includes/divebomb.h
index cc68e228cb9..3fb38b4b3d9 100644
--- a/src/mame/includes/divebomb.h
+++ b/src/mame/includes/divebomb.h
@@ -35,6 +35,9 @@ public:
{
}
+ void divebomb(machine_config &config);
+
+private:
required_device<cpu_device> m_spritecpu;
required_device<cpu_device> m_fgcpu;
required_device<cpu_device> m_rozcpucpu;
@@ -76,7 +79,6 @@ public:
template<int Chip> DECLARE_WRITE8_MEMBER(rozcpu_wrap_enable_w);
template<int Chip> DECLARE_WRITE8_MEMBER(rozcpu_enable_w);
DECLARE_WRITE8_MEMBER(rozcpu_pal_w);
- void divebomb(machine_config &config);
void divebomb_fgcpu_iomap(address_map &map);
void divebomb_fgcpu_map(address_map &map);
void divebomb_rozcpu_iomap(address_map &map);