summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/taitosj.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/taitosj.h')
-rw-r--r--src/mame/includes/taitosj.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/taitosj.h b/src/mame/includes/taitosj.h
index 8ef43651494..3f3771649b1 100644
--- a/src/mame/includes/taitosj.h
+++ b/src/mame/includes/taitosj.h
@@ -23,7 +23,9 @@ public:
m_audiocpu(*this, "audiocpu"),
m_mcu(*this, "mcu"),
m_dac(*this, "dac"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
typedef void (taitosj_state::*copy_layer_func_t)(bitmap_ind16 &,
const rectangle &, int, int *, rectangle *);
@@ -126,4 +128,6 @@ public:
optional_device<cpu_device> m_mcu;
required_device<dac_device> m_dac;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};