summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ikki.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ikki.h')
-rw-r--r--src/mame/includes/ikki.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/ikki.h b/src/mame/includes/ikki.h
index f898e9d354f..342ef148d5f 100644
--- a/src/mame/includes/ikki.h
+++ b/src/mame/includes/ikki.h
@@ -24,6 +24,9 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette") { }
+ void ikki(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;
/* memory pointers */
@@ -51,7 +54,6 @@ public:
uint32_t screen_update_ikki(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_DEVICE_CALLBACK_MEMBER(ikki_irq);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
- void ikki(machine_config &config);
void ikki_cpu1(address_map &map);
void ikki_cpu2(address_map &map);
};