summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/plygonet.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-10 09:01:10 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-10 09:01:10 +0000
commit1da9a7259b83e14d86abe8e66828ad1a6b5cc87c (patch)
treed4f610caed37d03ff0d9a412aec8e017ea713e24 /src/mame/includes/plygonet.h
parent9be192b9a41faf1f4f9d9b719440440d88671887 (diff)
added m_maincpu to the rest of drivers in mame (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 71b43c24265..3ee7ac5e8f5 100644
--- a/src/mame/includes/plygonet.h
+++ b/src/mame/includes/plygonet.h
@@ -11,7 +11,8 @@ public:
: driver_device(mconfig, type, tag),
m_shared_ram(*this, "shared_ram"),
m_dsp56k_p_mirror(*this, "dsp56k_p_mirror"),
- m_dsp56k_p_8000(*this, "dsp56k_p_8000"){ }
+ m_dsp56k_p_8000(*this, "dsp56k_p_8000"),
+ m_maincpu(*this, "maincpu") { }
/* 68k-side shared ram */
required_shared_ptr<UINT32> m_shared_ram;
@@ -76,4 +77,5 @@ public:
INTERRUPT_GEN_MEMBER(polygonet_interrupt);
INTERRUPT_GEN_MEMBER(audio_interrupt);
void reset_sound_region();
+ required_device<cpu_device> m_maincpu;
};