summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hotblock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hotblock.cpp')
-rw-r--r--src/mame/drivers/hotblock.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/hotblock.cpp b/src/mame/drivers/hotblock.cpp
index e6d6f5a584b..38c733c44e0 100644
--- a/src/mame/drivers/hotblock.cpp
+++ b/src/mame/drivers/hotblock.cpp
@@ -55,6 +55,9 @@ public:
m_palette(*this, "palette"),
m_vram(*this, "vram") { }
+ void hotblock(machine_config &config);
+
+private:
/* devices */
required_device<cpu_device> m_maincpu;
required_device<palette_device> m_palette;
@@ -78,7 +81,6 @@ public:
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void hotblock(machine_config &config);
void hotblock_io(address_map &map);
void hotblock_map(address_map &map);
};