summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/plygonet.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-11 09:19:49 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-11 09:19:49 +0000
commitc62cc05f9624b1b33fb796edde41f67d5c4ee432 (patch)
treee7376c4594509f0e5a15877c0ecd173988ad8cbf /src/mame/includes/plygonet.h
parent415ccecb5fd028715c8f2aec1c73d8ce5d687c60 (diff)
changed machine().device("soundcpu") with m_soundcpu (nw)
Diffstat (limited to 'src/mame/includes/plygonet.h')
-rw-r--r--src/mame/includes/plygonet.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/plygonet.h b/src/mame/includes/plygonet.h
index 3ee7ac5e8f5..b9b49def4bc 100644
--- a/src/mame/includes/plygonet.h
+++ b/src/mame/includes/plygonet.h
@@ -12,7 +12,8 @@ public:
m_shared_ram(*this, "shared_ram"),
m_dsp56k_p_mirror(*this, "dsp56k_p_mirror"),
m_dsp56k_p_8000(*this, "dsp56k_p_8000"),
- m_maincpu(*this, "maincpu") { }
+ m_maincpu(*this, "maincpu"),
+ m_soundcpu(*this, "soundcpu") { }
/* 68k-side shared ram */
required_shared_ptr<UINT32> m_shared_ram;
@@ -78,4 +79,5 @@ public:
INTERRUPT_GEN_MEMBER(audio_interrupt);
void reset_sound_region();
required_device<cpu_device> m_maincpu;
+ required_device<cpu_device> m_soundcpu;
};