summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/lordgun.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/lordgun.h')
-rw-r--r--src/mame/includes/lordgun.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/includes/lordgun.h b/src/mame/includes/lordgun.h
index fbc1b57227e..e54834a5f21 100644
--- a/src/mame/includes/lordgun.h
+++ b/src/mame/includes/lordgun.h
@@ -7,6 +7,7 @@
*************************************************************************/
#include "sound/okim6295.h"
#include "machine/eepromser.h"
+#include "machine/gen_latch.h"
struct lordgun_gun_data
{
@@ -26,6 +27,8 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
+ m_soundlatch(*this, "soundlatch"),
+ m_soundlatch2(*this, "soundlatch2"),
m_generic_paletteram_16(*this, "paletteram"),
m_priority_ram(*this, "priority_ram"),
m_scrollram(*this, "scrollram"),
@@ -41,6 +44,8 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
+ required_device<generic_latch_8_device> m_soundlatch;
+ required_device<generic_latch_8_device> m_soundlatch2;
required_shared_ptr<UINT16> m_generic_paletteram_16;
required_shared_ptr<UINT16> m_priority_ram;