summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/esqmr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/esqmr.cpp')
-rw-r--r--src/mame/drivers/esqmr.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mame/drivers/esqmr.cpp b/src/mame/drivers/esqmr.cpp
index 1de6b16b3a4..c0c44843a6a 100644
--- a/src/mame/drivers/esqmr.cpp
+++ b/src/mame/drivers/esqmr.cpp
@@ -200,18 +200,21 @@
***************************************************************************/
#include "emu.h"
+#include "machine/esqvfd.h"
+
#include "machine/68340.h"
#include "sound/es5506.h"
-#include "machine/esqvfd.h"
+#include "speaker.h"
+
class esqmr_state : public driver_device
{
public:
esqmr_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_sq1vfd(*this, "sq1vfd")
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
+ , m_sq1vfd(*this, "sq1vfd")
{ }
required_device<m68340cpu_device> m_maincpu;