summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tonton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tonton.cpp')
-rw-r--r--src/mame/drivers/tonton.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/tonton.cpp b/src/mame/drivers/tonton.cpp
index c94e7aabad7..8290651a60f 100644
--- a/src/mame/drivers/tonton.cpp
+++ b/src/mame/drivers/tonton.cpp
@@ -41,6 +41,9 @@ public:
m_hopper(*this, "hopper")
{ }
+ void tonton(machine_config &config);
+
+private:
required_device<v9938_device> m_v9938;
DECLARE_WRITE8_MEMBER(tonton_outport_w);
DECLARE_WRITE8_MEMBER(hopper_w);
@@ -50,7 +53,6 @@ public:
virtual void machine_reset() override;
required_device<cpu_device> m_maincpu;
required_device<ticket_dispenser_device> m_hopper;
- void tonton(machine_config &config);
void tonton_io(address_map &map);
void tonton_map(address_map &map);
};