summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/exidy440.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/exidy440.h')
-rw-r--r--src/mame/includes/exidy440.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mame/includes/exidy440.h b/src/mame/includes/exidy440.h
index dc345b6d404..8e97b849475 100644
--- a/src/mame/includes/exidy440.h
+++ b/src/mame/includes/exidy440.h
@@ -20,7 +20,9 @@ public:
m_spriteram(*this, "spriteram"),
m_scanline(*this, "scanline"),
m_maincpu(*this, "maincpu"),
- m_custom(*this, "custom") { }
+ m_custom(*this, "custom"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_imageram;
required_shared_ptr<UINT8> m_spriteram;
@@ -28,7 +30,9 @@ public:
required_device<cpu_device> m_maincpu;
required_device<exidy440_sound_device> m_custom;
-
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
+
UINT8 m_bank;
const UINT8 *m_showdown_bank_data[2];
INT8 m_showdown_bank_select;