summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/megadriv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/megadriv.h')
-rw-r--r--src/mame/includes/megadriv.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mame/includes/megadriv.h b/src/mame/includes/megadriv.h
index ec50e6061f5..07d4da6d3ff 100644
--- a/src/mame/includes/megadriv.h
+++ b/src/mame/includes/megadriv.h
@@ -198,7 +198,9 @@ public:
segac2_state(const machine_config &mconfig, device_type type, const char *tag)
: md_base_state(mconfig, type, tag),
m_paletteram(*this, "paletteram"),
- m_upd7759(*this, "upd") { }
+ m_upd7759(*this, "upd"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
// for Print Club only
int m_cam_data;
@@ -277,6 +279,9 @@ public:
DECLARE_READ16_MEMBER(ichirjbl_prot_r);
DECLARE_WRITE_LINE_MEMBER(segac2_irq2_interrupt);
optional_device<upd7759_device> m_upd7759;
+ optional_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
+
};