summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/sms.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/sms.h')
-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 868f06b999b..090dd1fd0ea 100644
--- a/src/mess/includes/sms.h
+++ b/src/mess/includes/sms.h
@@ -30,6 +30,7 @@ public:
m_main_cpu(*this, "maincpu"),
m_control_cpu(*this, "control"),
m_vdp(*this, "sms_vdp"),
+ m_eeprom(*this, "eeprom"),
m_main_scr(*this, "screen"),
m_is_gamegear(0),
m_is_region_japan(0),
@@ -45,7 +46,7 @@ public:
required_device<cpu_device> m_main_cpu;
optional_device<cpu_device> m_control_cpu;
required_device<sega315_5124_device> m_vdp;
- eeprom_device *m_eeprom;
+ optional_device<eeprom_device> m_eeprom;
device_t *m_ym;
required_device<screen_device> m_main_scr;
device_t *m_left_lcd;