summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/rocnrope.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/rocnrope.h')
-rw-r--r--src/mame/includes/rocnrope.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/includes/rocnrope.h b/src/mame/includes/rocnrope.h
index 4906b40d0e5..5f388114fa8 100644
--- a/src/mame/includes/rocnrope.h
+++ b/src/mame/includes/rocnrope.h
@@ -17,6 +17,11 @@ public:
m_videoram(*this, "videoram")
{ }
+ void rocnrope(machine_config &config);
+
+ void init_rocnrope();
+
+private:
// devices
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -38,7 +43,6 @@ public:
DECLARE_WRITE8_MEMBER(rocnrope_videoram_w);
DECLARE_WRITE8_MEMBER(rocnrope_colorram_w);
DECLARE_WRITE_LINE_MEMBER(flip_screen_w);
- void init_rocnrope();
TILE_GET_INFO_MEMBER(get_bg_tile_info);
virtual void video_start() override;
@@ -46,6 +50,5 @@ public:
uint32_t screen_update_rocnrope(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(vblank_irq);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
- void rocnrope(machine_config &config);
void rocnrope_map(address_map &map);
};