summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/homerun.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/homerun.h')
-rw-r--r--src/mame/includes/homerun.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mame/includes/homerun.h b/src/mame/includes/homerun.h
index 164c8d88d43..a81dbee9a80 100644
--- a/src/mame/includes/homerun.h
+++ b/src/mame/includes/homerun.h
@@ -18,7 +18,9 @@ public:
m_colorram(*this, "colorram"),
m_d7756(*this, "d7756"),
m_samples(*this, "samples"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette")
{ }
required_device<cpu_device> m_maincpu;
@@ -28,7 +30,9 @@ public:
optional_device<upd7756_device> m_d7756;
optional_device<samples_device> m_samples;
required_device<gfxdecode_device> m_gfxdecode;
-
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
+
UINT8 m_control;
UINT8 m_sample;