summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mustache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mustache.h')
-rw-r--r--src/mame/includes/mustache.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/includes/mustache.h b/src/mame/includes/mustache.h
index d568e0c69f0..4395cd37722 100644
--- a/src/mame/includes/mustache.h
+++ b/src/mame/includes/mustache.h
@@ -19,6 +19,11 @@ public:
m_spriteram(*this, "spriteram"),
m_dswb(*this, "DSWB") { }
+ void mustache(machine_config &config);
+
+ void init_mustache();
+
+private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
@@ -38,14 +43,12 @@ public:
TILE_GET_INFO_MEMBER(get_bg_tile_info);
- void init_mustache();
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
TIMER_DEVICE_CALLBACK_MEMBER(scanline);
- void mustache(machine_config &config);
void decrypted_opcodes_map(address_map &map);
void memmap(address_map &map);
};