summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/exedexes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/exedexes.h')
-rw-r--r--src/mame/includes/exedexes.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/exedexes.h b/src/mame/includes/exedexes.h
index dcfb64c6bc3..10d7b0fca1a 100644
--- a/src/mame/includes/exedexes.h
+++ b/src/mame/includes/exedexes.h
@@ -25,6 +25,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void exedexes(machine_config &config);
+
+private:
/* memory pointers */
required_device<buffered_spriteram8_device> m_spriteram;
required_shared_ptr<uint8_t> m_videoram;
@@ -61,7 +64,6 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void exedexes(machine_config &config);
void exedexes_map(address_map &map);
void sound_map(address_map &map);
};