summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/neogeo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/neogeo.h')
-rw-r--r--src/mame/includes/neogeo.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mame/includes/neogeo.h b/src/mame/includes/neogeo.h
index 8355656448e..11aa8e50692 100644
--- a/src/mame/includes/neogeo.h
+++ b/src/mame/includes/neogeo.h
@@ -38,7 +38,9 @@ public:
m_bank_cartridge(*this, "cartridge"),
m_bank_audio_main(*this, "audio_main"),
m_upd4990a(*this, "upd4990a"),
- m_save_ram(*this, "saveram") { }
+ m_save_ram(*this, "saveram"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
DECLARE_WRITE16_MEMBER(io_control_w);
DECLARE_READ16_MEMBER(memcard_r);
@@ -333,6 +335,9 @@ protected:
optional_device<upd4990a_old_device> m_upd4990a;
optional_shared_ptr<UINT16> m_save_ram;
+ required_device<screen_device> m_screen;
+ optional_device<palette_device> m_palette;
+
// configuration
enum {NEOGEO_MVS, NEOGEO_AES, NEOGEO_CD} m_type;