summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/nbmj8891.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/nbmj8891.h')
-rw-r--r--src/mame/includes/nbmj8891.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/nbmj8891.h b/src/mame/includes/nbmj8891.h
index 74de22dd875..76345b42fb8 100644
--- a/src/mame/includes/nbmj8891.h
+++ b/src/mame/includes/nbmj8891.h
@@ -11,10 +11,14 @@ public:
nbmj8891_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) ,
m_maincpu(*this, "maincpu"),
- m_nb1413m3(*this, "nb1413m3") { }
+ m_nb1413m3(*this, "nb1413m3"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
required_device<cpu_device> m_maincpu;
required_device<nb1413m3_device> m_nb1413m3;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
int m_scrolly;
int m_blitter_destx;