summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/stfight.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/stfight.h')
-rw-r--r--src/mame/includes/stfight.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mame/includes/stfight.h b/src/mame/includes/stfight.h
index a2fb44092bc..4f60c694f94 100644
--- a/src/mame/includes/stfight.h
+++ b/src/mame/includes/stfight.h
@@ -6,6 +6,7 @@
#pragma once
#include "cpu/m6805/m68705.h"
+#include "sound/ym2203.h"
#include "sound/msm5205.h"
#include "video/stfight_dev.h"
#include "video/airraid_dev.h"
@@ -20,6 +21,8 @@ public:
, m_audiocpu(*this, "audiocpu")
, m_mcu(*this, "mcu")
, m_msm(*this, "msm")
+ , m_ym1(*this, "ym1")
+ , m_ym2(*this, "ym2")
, m_main_bank(*this, "mainbank")
, m_samples(*this, "adpcm")
, m_decrypted_opcodes(*this, "decrypted_opcodes")
@@ -88,6 +91,9 @@ private:
required_device<m68705p5_device> m_mcu;
required_device<msm5205_device> m_msm;
+ required_device<ym2203_device> m_ym1;
+ required_device<ym2203_device> m_ym2;
+
required_memory_bank m_main_bank;
required_region_ptr<uint8_t> m_samples;