summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2013-07-22 19:38:25 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2013-07-22 19:38:25 +0000
commitb465f20f89a0561f27da7475814ade10c655acd0 (patch)
tree5b9c85ae64ef8c025b02764fe2d82eee8f19bd5c /src/mame/includes/gaplus.h
parent315cdded938a18dbf3d107766a4167df2d8cc4d6 (diff)
Modernized the namco sound device. [Osso]
Diffstat (limited to 'src/mame/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index bb3a0b6d441..fe039ca729c 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -1,3 +1,4 @@
+#include "sound/namco.h"
#include "sound/samples.h"
#include "machine/namcoio.h"
@@ -29,6 +30,7 @@ public:
m_maincpu(*this, "maincpu"),
m_subcpu(*this, "sub"),
m_subcpu2(*this, "sub2"),
+ m_namco_15xx(*this, "namco"),
m_samples(*this, "samples") ,
m_customio_3(*this,"customio_3"),
m_videoram(*this,"videoram"),
@@ -37,6 +39,7 @@ public:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;
required_device<cpu_device> m_subcpu2;
+ required_device<namco_15xx_device> m_namco_15xx;
required_device<samples_device> m_samples;
required_shared_ptr<UINT8> m_customio_3;
required_shared_ptr<UINT8> m_videoram;