summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/metlfrzr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/metlfrzr.cpp')
-rw-r--r--src/mame/drivers/metlfrzr.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/metlfrzr.cpp b/src/mame/drivers/metlfrzr.cpp
index aaf72b1d897..8b6da9c5e78 100644
--- a/src/mame/drivers/metlfrzr.cpp
+++ b/src/mame/drivers/metlfrzr.cpp
@@ -44,6 +44,11 @@ public:
m_gfxdecode(*this, "gfxdecode")
{ }
+ void metlfrzr(machine_config &config);
+
+ void init_metlfrzr();
+
+private:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
@@ -59,12 +64,10 @@ public:
required_device<palette_device> m_palette;
required_device<gfxdecode_device> m_gfxdecode;
- void init_metlfrzr();
DECLARE_WRITE8_MEMBER(output_w);
TIMER_DEVICE_CALLBACK_MEMBER(scanline);
uint8_t m_fg_tilebank;
bool m_rowscroll_enable;
- void metlfrzr(machine_config &config);
void decrypted_opcodes_map(address_map &map);
void metlfrzr_map(address_map &map);
};