summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/suna16.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2016-06-09 17:18:09 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2016-06-09 17:18:09 +0200
commit15fdafadd2721d16d28bfb7573a3a37ee5beeb00 (patch)
treee10a0a263ccfc270d136e0efff5e1f691e4ac70f /src/mame/includes/suna16.h
parent89466e4937ef83c97f21800d48e7b5d3d7c4276e (diff)
second-to-last gen_latch.cpp update (nw)
Diffstat (limited to 'src/mame/includes/suna16.h')
-rw-r--r--src/mame/includes/suna16.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/includes/suna16.h b/src/mame/includes/suna16.h
index d7f7ed7d029..094c95647af 100644
--- a/src/mame/includes/suna16.h
+++ b/src/mame/includes/suna16.h
@@ -1,5 +1,7 @@
// license:BSD-3-Clause
// copyright-holders:Luca Elia
+
+#include "machine/gen_latch.h"
#include "sound/dac.h"
class suna16_state : public driver_device
@@ -15,6 +17,7 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
+ m_soundlatch(*this, "soundlatch"),
m_spriteram(*this, "spriteram"),
m_spriteram2(*this, "spriteram2"),
m_bank1(*this, "bank1"),
@@ -31,6 +34,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<UINT16> m_spriteram;
optional_shared_ptr<UINT16> m_spriteram2;