summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaelco.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gaelco.h')
-rw-r--r--src/mame/includes/gaelco.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/includes/gaelco.h b/src/mame/includes/gaelco.h
index 57c1478304b..2bfd7d4829f 100644
--- a/src/mame/includes/gaelco.h
+++ b/src/mame/includes/gaelco.h
@@ -6,6 +6,8 @@
***************************************************************************/
+#include "machine/gen_latch.h"
+
class gaelco_state : public driver_device
{
public:
@@ -15,6 +17,7 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette"),
m_audiocpu(*this, "audiocpu"),
+ m_soundlatch(*this, "soundlatch"),
m_videoram(*this, "videoram"),
m_vregs(*this, "vregs"),
m_spriteram(*this, "spriteram"),
@@ -25,6 +28,7 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
optional_device<cpu_device> m_audiocpu;
+ optional_device<generic_latch_8_device> m_soundlatch;
/* memory pointers */
required_shared_ptr<UINT16> m_videoram;