summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/progolf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/progolf.cpp')
-rw-r--r--src/mame/drivers/progolf.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mame/drivers/progolf.cpp b/src/mame/drivers/progolf.cpp
index 52f3aa4fc35..2d4544c3983 100644
--- a/src/mame/drivers/progolf.cpp
+++ b/src/mame/drivers/progolf.cpp
@@ -76,6 +76,12 @@ public:
m_videoram(*this, "videoram"),
m_fbram(*this, "fbram") { }
+ void progolfa(machine_config &config);
+ void progolf(machine_config &config);
+
+ DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -99,15 +105,11 @@ public:
DECLARE_READ8_MEMBER(videoram_r);
DECLARE_WRITE8_MEMBER(videoram_w);
- DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
-
virtual void machine_start() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(progolf);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void progolfa(machine_config &config);
- void progolf(machine_config &config);
void main_cpu(address_map &map);
void sound_cpu(address_map &map);
};