summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sstrangr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sstrangr.cpp')
-rw-r--r--src/mame/drivers/sstrangr.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/sstrangr.cpp b/src/mame/drivers/sstrangr.cpp
index 5b9b8c1a3ee..e5dd90b0c26 100644
--- a/src/mame/drivers/sstrangr.cpp
+++ b/src/mame/drivers/sstrangr.cpp
@@ -24,6 +24,10 @@ public:
m_palette(*this, "palette"),
m_ram(*this, "ram") { }
+ void sstrngr2(machine_config &config);
+ void sstrangr(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
optional_device<palette_device> m_palette;
required_shared_ptr<uint8_t> m_ram;
@@ -36,8 +40,6 @@ public:
uint32_t screen_update_sstrangr(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
uint32_t screen_update_sstrngr2(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- void sstrngr2(machine_config &config);
- void sstrangr(machine_config &config);
void sstrangr_io_map(address_map &map);
void sstrangr_map(address_map &map);
};