summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/copsnrob.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-09-28 08:39:43 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-09-28 08:39:43 +0000
commit8701f68d97b164048819770461ba82836a2896a6 (patch)
tree411a26f1486b671e2622657be02ab01beb59ab98 /src/mame/includes/copsnrob.h
parente1f7a289f3794327ccc6683e0752597ecc3812d7 (diff)
Replace some *_DEVICE_HANDLER with _MEMBER calls, mostly audio (no whatsnew)
Diffstat (limited to 'src/mame/includes/copsnrob.h')
-rw-r--r--src/mame/includes/copsnrob.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/includes/copsnrob.h b/src/mame/includes/copsnrob.h
index 531b4ffdcd3..56cca584330 100644
--- a/src/mame/includes/copsnrob.h
+++ b/src/mame/includes/copsnrob.h
@@ -17,7 +17,8 @@ public:
m_bulletsram(*this, "bulletsram"),
m_carimage(*this, "carimage"),
m_cary(*this, "cary"),
- m_videoram(*this, "videoram"){ }
+ m_videoram(*this, "videoram"),
+ m_discrete(*this, "discrete"){ }
/* memory pointers */
required_shared_ptr<UINT8> m_trucky;
@@ -26,7 +27,7 @@ public:
required_shared_ptr<UINT8> m_carimage;
required_shared_ptr<UINT8> m_cary;
required_shared_ptr<UINT8> m_videoram;
-
+ required_device<discrete_device> m_discrete;
/* misc */
UINT8 m_misc;
UINT8 m_ic_h3_data;