summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2016-06-09 01:56:59 +0100
committer smf- <smf-@users.noreply.github.com>2016-06-09 01:57:40 +0100
commit282c42877e30ef417730625a795d1ee6eddf8a26 (patch)
tree7e1a0c1bd3b8c0b7874b60970fcee48a2d80d516 /src/devices
parent11112e89a70d01ea24c2bf921ae37bb765e48dfc (diff)
for MSVC (nw)
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/cpu/8x300/8x300.cpp3
-rw-r--r--src/devices/cpu/8x300/8x300.h2
-rw-r--r--src/devices/machine/upd765.cpp2
3 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/cpu/8x300/8x300.cpp b/src/devices/cpu/8x300/8x300.cpp
index 8b96485f47f..7096448f90f 100644
--- a/src/devices/cpu/8x300/8x300.cpp
+++ b/src/devices/cpu/8x300/8x300.cpp
@@ -9,9 +9,8 @@
* Written by Barry Rodewald
*/
-#include "emu.h"
-#include "debugger.h"
#include "8x300.h"
+#include "debugger.h"
#define FETCHOP(a) (m_direct->read_word(a))
#define CYCLES(x) do { m_icount -= (x); } while (0)
diff --git a/src/devices/cpu/8x300/8x300.h b/src/devices/cpu/8x300/8x300.h
index dd236372e5d..c2eff97499b 100644
--- a/src/devices/cpu/8x300/8x300.h
+++ b/src/devices/cpu/8x300/8x300.h
@@ -10,6 +10,8 @@
#ifndef _8X300_H_
#define _8X300_H_
+#include "emu.h"
+
// Register enumeration
enum
{
diff --git a/src/devices/machine/upd765.cpp b/src/devices/machine/upd765.cpp
index 04a194d6993..96dd03fa1a9 100644
--- a/src/devices/machine/upd765.cpp
+++ b/src/devices/machine/upd765.cpp
@@ -1,8 +1,8 @@
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
-#include "debugger.h"
#include "upd765.h"
+#include "debugger.h"
const device_type UPD765A = &device_creator<upd765a_device>;
const device_type UPD765B = &device_creator<upd765b_device>;