summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hotstuff.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hotstuff.cpp')
-rw-r--r--src/mame/drivers/hotstuff.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/hotstuff.cpp b/src/mame/drivers/hotstuff.cpp
index 71182c6773e..c649b6f7bd7 100644
--- a/src/mame/drivers/hotstuff.cpp
+++ b/src/mame/drivers/hotstuff.cpp
@@ -19,12 +19,14 @@ public:
m_maincpu(*this, "maincpu"),
m_rtc(*this, "rtc") { }
+ void hotstuff(machine_config &config);
+
+private:
required_shared_ptr<uint16_t> m_bitmapram;
virtual void video_start() override;
uint32_t screen_update_hotstuff(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<mc146818_device> m_rtc;
- void hotstuff(machine_config &config);
void hotstuff_map(address_map &map);
};