summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/techno.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/techno.cpp')
-rw-r--r--src/mame/drivers/techno.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/techno.cpp b/src/mame/drivers/techno.cpp
index 8c305e7f17f..ecb46bdbf67 100644
--- a/src/mame/drivers/techno.cpp
+++ b/src/mame/drivers/techno.cpp
@@ -30,6 +30,9 @@ public:
, m_digits(*this, "digit%u", 0U)
{ }
+ void techno(machine_config &config);
+
+private:
enum
{
IRQ_SET_TIMER,
@@ -51,11 +54,9 @@ public:
DECLARE_READ8_MEMBER(rd_r) { return 0; }
DECLARE_WRITE8_MEMBER(wr_w) {}
- void techno(machine_config &config);
void techno_map(address_map &map);
void techno_sub_map(address_map &map);
-private:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
virtual void machine_start() override;
virtual void machine_reset() override;