summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mpu4dealem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mpu4dealem.cpp')
-rw-r--r--src/mame/drivers/mpu4dealem.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/drivers/mpu4dealem.cpp b/src/mame/drivers/mpu4dealem.cpp
index 37063826098..8327c7e983f 100644
--- a/src/mame/drivers/mpu4dealem.cpp
+++ b/src/mame/drivers/mpu4dealem.cpp
@@ -15,17 +15,20 @@ the Deal 'Em board design, rather than the one they ultimately used, suggesting
#include "emu.h"
#include "includes/mpu4.h"
+
#include "video/resnet.h"
#include "video/mc6845.h"
+#include "screen.h"
+#include "speaker.h"
class mpu4dealem_state : public mpu4_state
{
public:
mpu4dealem_state(const machine_config &mconfig, device_type type, const char *tag)
- : mpu4_state(mconfig, type, tag),
- m_dealem_videoram(*this, "dealem_videoram"),
- m_gfxdecode(*this, "gfxdecode")
+ : mpu4_state(mconfig, type, tag)
+ , m_dealem_videoram(*this, "dealem_videoram")
+ , m_gfxdecode(*this, "gfxdecode")
{
}