summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/guab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/guab.cpp')
-rw-r--r--src/mame/drivers/guab.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mame/drivers/guab.cpp b/src/mame/drivers/guab.cpp
index 8104de2f956..eb057f4fdc9 100644
--- a/src/mame/drivers/guab.cpp
+++ b/src/mame/drivers/guab.cpp
@@ -82,6 +82,11 @@ public:
m_sound_buffer(0), m_sound_latch(false)
{ }
+ void guab(machine_config &config);
+
+ DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
+
+private:
EF9369_COLOR_UPDATE(ef9369_color_update);
DECLARE_WRITE16_MEMBER(tms34061_w);
DECLARE_READ16_MEMBER(tms34061_r);
@@ -99,16 +104,14 @@ public:
DECLARE_READ8_MEMBER(watchdog_r);
DECLARE_WRITE8_MEMBER(watchdog_w);
- DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
DECLARE_FLOPPY_FORMATS(floppy_formats);
- void guab(machine_config &config);
void guab_map(address_map &map);
-protected:
+
virtual void machine_start() override;
-private:
+
required_device<cpu_device> m_maincpu;
required_device<tms34061_device> m_tms34061;
required_device<sn76489_device> m_sn;