summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/xexex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/xexex.h')
-rw-r--r--src/mame/includes/xexex.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mame/includes/xexex.h b/src/mame/includes/xexex.h
index 72e2554b6c6..9c73f944ffa 100644
--- a/src/mame/includes/xexex.h
+++ b/src/mame/includes/xexex.h
@@ -45,6 +45,11 @@ public:
{
}
+ void xexex(machine_config &config);
+
+ void init_xexex();
+
+private:
/* memory pointers */
required_shared_ptr<uint16_t> m_workram;
required_shared_ptr<uint16_t> m_spriteram;
@@ -89,7 +94,7 @@ public:
DECLARE_WRITE16_MEMBER(control2_w);
DECLARE_WRITE16_MEMBER(sound_irq_w);
DECLARE_WRITE8_MEMBER(sound_bankswitch_w);
- void init_xexex();
+
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
@@ -102,7 +107,7 @@ public:
K056832_CB_MEMBER(tile_callback);
K053246_CB_MEMBER(sprite_callback);
K054539_CB_MEMBER(ym_set_mixing);
- void xexex(machine_config &config);
+
void main_map(address_map &map);
void sound_map(address_map &map);
};