summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/jedi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/jedi.h')
-rw-r--r--src/mame/includes/jedi.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/includes/jedi.h b/src/mame/includes/jedi.h
index 05f17acad2c..d4619c83778 100644
--- a/src/mame/includes/jedi.h
+++ b/src/mame/includes/jedi.h
@@ -6,6 +6,8 @@
*************************************************************************/
+#include "screen.h"
+
/* oscillators and clocks */
#define JEDI_MAIN_CPU_OSC (XTAL_10MHz)
@@ -21,7 +23,7 @@ class jedi_state : public driver_device
public:
jedi_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_nvram(*this, "nvram") ,
+ m_nvram(*this, "nvram") ,
m_foreground_bank(*this, "foreground_bank"),
m_video_off(*this, "video_off"),
m_backgroundram(*this, "backgroundram"),
@@ -33,7 +35,8 @@ public:
m_speech_data(*this, "speech_data"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_screen(*this, "screen") { }
+ m_screen(*this, "screen")
+ { }
required_shared_ptr<uint8_t> m_nvram;