summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/plygonet.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-15 11:28:28 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-15 11:28:28 +0000
commit0d3153e113c395cef7e8685bc78eae24ce789ea0 (patch)
tree7cd7cd27a272640affa2393401830aec6d3628bd /src/mame/includes/plygonet.h
parent5b2dde69b9afb679457e278c5becc27e32f8813c (diff)
various cpu lookup cleanup (nw)
Diffstat (limited to 'src/mame/includes/plygonet.h')
-rw-r--r--src/mame/includes/plygonet.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/includes/plygonet.h b/src/mame/includes/plygonet.h
index 397b467d23c..ee700319d1a 100644
--- a/src/mame/includes/plygonet.h
+++ b/src/mame/includes/plygonet.h
@@ -16,6 +16,7 @@ public:
m_dsp56k_p_8000(*this, "dsp56k_p_8000"),
m_maincpu(*this, "maincpu"),
m_soundcpu(*this, "soundcpu"),
+ m_dsp(*this, "dsp"),
m_eeprom(*this, "eeprom"),
m_k053936(*this, "k053936") { }
@@ -84,6 +85,7 @@ public:
void reset_sound_region();
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_soundcpu;
+ required_device<cpu_device> m_dsp;
required_device<eeprom_device> m_eeprom;
required_device<k053936_device> m_k053936;
};