summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/rampart.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/rampart.h')
-rw-r--r--src/mame/includes/rampart.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/rampart.h b/src/mame/includes/rampart.h
index d7e62bc9b39..964befa8056 100644
--- a/src/mame/includes/rampart.h
+++ b/src/mame/includes/rampart.h
@@ -8,6 +8,7 @@
#include "machine/atarigen.h"
#include "sound/okim6295.h"
+#include "sound/2413intf.h"
#include "video/atarimo.h"
class rampart_state : public atarigen_state
@@ -17,10 +18,12 @@ public:
: atarigen_state(mconfig, type, tag),
m_mob(*this, "mob"),
m_oki(*this, "oki"),
+ m_ym2413(*this, "ymsnd"),
m_bitmap(*this, "bitmap") { }
required_device<atari_motion_objects_device> m_mob;
required_device<okim6295_device> m_oki;
+ required_device<ym2413_device> m_ym2413;
required_shared_ptr<UINT16> m_bitmap;