summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bladestl.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-09 10:00:03 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-09 10:00:03 +0000
commitbb84877a2f61621ae2fed56cfa744590782ba114 (patch)
treeca1d1ba104906ef92e3c2c62c0bdf6e4ee179797 /src/mame/includes/bladestl.h
parentd09d3220ab2e819068fd72df34b47919c197a0ce (diff)
moved cpu_device * to required_device in existing driver state classes (nw)
Diffstat (limited to 'src/mame/includes/bladestl.h')
-rw-r--r--src/mame/includes/bladestl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/includes/bladestl.h b/src/mame/includes/bladestl.h
index c2faf414876..f7d01a75822 100644
--- a/src/mame/includes/bladestl.h
+++ b/src/mame/includes/bladestl.h
@@ -9,7 +9,8 @@ class bladestl_state : public driver_device
public:
bladestl_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) ,
- m_paletteram(*this, "paletteram"){ }
+ m_paletteram(*this, "paletteram"),
+ m_audiocpu(*this, "audiocpu"){ }
/* memory pointers */
required_shared_ptr<UINT8> m_paletteram;
@@ -22,7 +23,7 @@ public:
int m_last_track[4];
/* devices */
- cpu_device *m_audiocpu;
+ required_device<cpu_device> m_audiocpu;
device_t *m_k007342;
device_t *m_k007420;
DECLARE_READ8_MEMBER(trackball_r);