summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/skyfox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/skyfox.h')
-rw-r--r--src/mame/includes/skyfox.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/includes/skyfox.h b/src/mame/includes/skyfox.h
index c45be86567e..8df505646f6 100644
--- a/src/mame/includes/skyfox.h
+++ b/src/mame/includes/skyfox.h
@@ -6,6 +6,8 @@
*************************************************************************/
+#include "machine/gen_latch.h"
+
class skyfox_state : public driver_device
{
public:
@@ -16,6 +18,7 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
+ m_soundlatch(*this, "soundlatch"),
m_spriteram(*this, "spriteram")
{ }
@@ -25,6 +28,7 @@ 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_shared_ptr<UINT8> m_spriteram;
int m_bg_pos;