summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/headonb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/headonb.cpp')
-rw-r--r--src/mame/drivers/headonb.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/headonb.cpp b/src/mame/drivers/headonb.cpp
index 2e3c5ae282e..6c894201925 100644
--- a/src/mame/drivers/headonb.cpp
+++ b/src/mame/drivers/headonb.cpp
@@ -43,6 +43,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_video_ram(*this, "video_ram") { }
+ void headonb(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -57,7 +60,6 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TILE_GET_INFO_MEMBER(get_tile_info);
- void headonb(machine_config &config);
void headonb_io_map(address_map &map);
void headonb_map(address_map &map);
};