summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/superdq.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/superdq.cpp')
-rw-r--r--src/mame/drivers/superdq.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/drivers/superdq.cpp b/src/mame/drivers/superdq.cpp
index 8eaef54573b..77c65bf0e94 100644
--- a/src/mame/drivers/superdq.cpp
+++ b/src/mame/drivers/superdq.cpp
@@ -36,12 +36,16 @@ class superdq_state : public driver_device
public:
superdq_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_laserdisc(*this, "laserdisc") ,
+ m_laserdisc(*this, "laserdisc"),
m_videoram(*this, "videoram"),
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette") { }
+ m_palette(*this, "palette")
+ { }
+ void superdq(machine_config &config);
+
+private:
required_device<pioneer_ldv1000_device> m_laserdisc;
uint8_t m_ld_in_latch;
uint8_t m_ld_out_latch;
@@ -63,7 +67,6 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void superdq(machine_config &config);
void superdq_io(address_map &map);
void superdq_map(address_map &map);
};