summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/metlclsh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/metlclsh.h')
-rw-r--r--src/mame/includes/metlclsh.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/includes/metlclsh.h b/src/mame/includes/metlclsh.h
index ab5c62da53b..7f0e22ef7bc 100644
--- a/src/mame/includes/metlclsh.h
+++ b/src/mame/includes/metlclsh.h
@@ -22,6 +22,11 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void metlclsh(machine_config &config);
+
+ DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
+
+private:
/* memory pointers */
required_shared_ptr<uint8_t> m_fgram;
required_shared_ptr<uint8_t> m_spriteram;
@@ -51,7 +56,6 @@ public:
DECLARE_WRITE8_MEMBER(metlclsh_gfxbank_w);
DECLARE_WRITE8_MEMBER(metlclsh_bgram_w);
DECLARE_WRITE8_MEMBER(metlclsh_fgram_w);
- DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
TILEMAP_MAPPER_MEMBER(metlclsh_bgtilemap_scan);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
@@ -60,7 +64,6 @@ public:
virtual void video_start() override;
uint32_t screen_update_metlclsh(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
- void metlclsh(machine_config &config);
void metlclsh_master_map(address_map &map);
void metlclsh_slave_map(address_map &map);
};