summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vega.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vega.cpp')
-rw-r--r--src/mame/drivers/vega.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/mame/drivers/vega.cpp b/src/mame/drivers/vega.cpp
index 0626200b647..f07f81b2c6c 100644
--- a/src/mame/drivers/vega.cpp
+++ b/src/mame/drivers/vega.cpp
@@ -80,6 +80,8 @@ TODO:
#include "machine/i8255.h"
#include "machine/ins8154.h"
#include "sound/ay8910.h"
+#include "screen.h"
+#include "speaker.h"
struct vega_obj
@@ -102,13 +104,15 @@ class vega_state : public driver_device
public:
vega_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_i8255(*this, "ppi8255"),
- m_ins8154(*this, "ins8154"),
- m_ay8910(*this, "ay8910"),
- m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette") {}
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
+ , m_i8255(*this, "ppi8255")
+ , m_ins8154(*this, "ins8154")
+ , m_ay8910(*this, "ay8910")
+ , m_gfxdecode(*this, "gfxdecode")
+ , m_palette(*this, "palette")
+ {
+ }
required_device<cpu_device> m_maincpu;
required_device<i8255_device> m_i8255;