summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/suprgolf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/suprgolf.cpp')
-rw-r--r--src/mame/drivers/suprgolf.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/suprgolf.cpp b/src/mame/drivers/suprgolf.cpp
index 97f52d0dabd..efa4f7923d5 100644
--- a/src/mame/drivers/suprgolf.cpp
+++ b/src/mame/drivers/suprgolf.cpp
@@ -44,6 +44,11 @@ public:
m_videoram(*this, "videoram")
{ }
+ void suprgolf(machine_config &config);
+
+ void init_suprgolf();
+
+private:
required_device<cpu_device> m_maincpu;
required_device<msm5205_device> m_msm;
required_device<gfxdecode_device> m_gfxdecode;
@@ -86,13 +91,11 @@ public:
TILE_GET_INFO_MEMBER(get_tile_info);
- void init_suprgolf();
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void suprgolf(machine_config &config);
void io_map(address_map &map);
void suprgolf_map(address_map &map);
};