summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/xyonix.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/xyonix.h')
-rw-r--r--src/mame/includes/xyonix.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/xyonix.h b/src/mame/includes/xyonix.h
index 6050b07d969..381022d981f 100644
--- a/src/mame/includes/xyonix.h
+++ b/src/mame/includes/xyonix.h
@@ -12,6 +12,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_vidram(*this, "vidram") { }
+ void xyonix(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -40,7 +43,6 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void handle_coins(int coin);
- void xyonix(machine_config &config);
void main_map(address_map &map);
void port_map(address_map &map);
};