summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/m90.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/m90.h')
-rw-r--r--src/mame/includes/m90.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/includes/m90.h b/src/mame/includes/m90.h
index 9ea4333107f..8425971ce29 100644
--- a/src/mame/includes/m90.h
+++ b/src/mame/includes/m90.h
@@ -6,7 +6,9 @@
#pragma once
#include "audio/m72.h"
+#include "cpu/nec/v25.h"
#include "emupal.h"
+#include "screen.h"
class m90_state : public driver_device
{
@@ -22,6 +24,7 @@ public:
, m_audio(*this, "m72")
, m_gfxdecode(*this, "gfxdecode")
, m_palette(*this, "palette")
+ , m_screen(*this, "screen")
{ }
void m90(machine_config &config);
@@ -50,6 +53,7 @@ private:
optional_device<m72_audio_device> m_audio;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
+ required_device<screen_device> m_screen;
tilemap_t *m_pf_layer[2][2];
uint8_t m_last_pf[2];