summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mayumi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mayumi.cpp')
-rw-r--r--src/mame/drivers/mayumi.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/mayumi.cpp b/src/mame/drivers/mayumi.cpp
index 898d2ddf5d5..e6787480bc7 100644
--- a/src/mame/drivers/mayumi.cpp
+++ b/src/mame/drivers/mayumi.cpp
@@ -10,9 +10,11 @@
#include "emu.h"
#include "cpu/z80/z80.h"
-#include "sound/2203intf.h"
#include "machine/nvram.h"
#include "machine/i8255.h"
+#include "sound/2203intf.h"
+#include "screen.h"
+#include "speaker.h"
#define MCLK XTAL_10MHz
@@ -25,7 +27,8 @@ public:
m_videoram(*this, "videoram"),
m_i8255(*this, "i8255"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode")
+ { }
/* memory pointers */
required_shared_ptr<uint8_t> m_videoram;