summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-05-13 14:08:19 +0000
committer smf- <smf-@users.noreply.github.com>2013-05-13 14:08:19 +0000
commit591f8de3da268063bea9d597c7044cdad9a93829 (patch)
tree33fd783f2cf87f8f3bd47c97f7461be0c643606f /src/mess/includes
parent417b4892eb760abf46995bdb6e18fdc1237f08c8 (diff)
modernised YM2413 [smf]
Diffstat (limited to 'src/mess/includes')
-rw-r--r--src/mess/includes/sms.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/includes/sms.h b/src/mess/includes/sms.h
index 4cc1ff2cecc..29f795942c4 100644
--- a/src/mess/includes/sms.h
+++ b/src/mess/includes/sms.h
@@ -31,6 +31,7 @@ public:
m_control_cpu(*this, "control"),
m_vdp(*this, "sms_vdp"),
m_eeprom(*this, "eeprom"),
+ m_ym(*this, "ym2413"),
m_main_scr(*this, "screen"),
m_is_gamegear(0),
m_is_region_japan(0),
@@ -47,7 +48,7 @@ public:
optional_device<cpu_device> m_control_cpu;
required_device<sega315_5124_device> m_vdp;
optional_device<eeprom_device> m_eeprom;
- device_t *m_ym;
+ optional_device<ym2413_device> m_ym;
required_device<screen_device> m_main_scr;
device_t *m_left_lcd;
device_t *m_right_lcd;