diff options
author | 2017-02-11 18:23:11 +0100 | |
---|---|---|
committer | 2017-02-11 18:31:20 +0100 | |
commit | a2557f1b02478c5aaa1fdfa00204ac2e219319a1 (patch) | |
tree | 6f1693d59aa53be8c76ffe3bcf7fbc72f8546453 /src/devices/bus/kc | |
parent | c49b631153be9efc3a7e7b6172c17f5418843c0b (diff) |
Remove emu.h from headers (nw)
Per Vas' request. If the compile fails for you (i'm thinking osx and
windows native debuggers here in particular), add '#include "emu.h"'
as first include of the cpp files that fail.
Due to our use of precompilation and forced inclusion, emu.h must be
included as the very first non-comment thing we do if we want to be
sure msvc compiles are identical to gcc/clang ones. Doing it directly
instead of through an include increases the correctness probability by
a magnitude.
Diffstat (limited to 'src/devices/bus/kc')
-rw-r--r-- | src/devices/bus/kc/d002.h | 1 | ||||
-rw-r--r-- | src/devices/bus/kc/d004.h | 1 | ||||
-rw-r--r-- | src/devices/bus/kc/ram.h | 1 | ||||
-rw-r--r-- | src/devices/bus/kc/rom.h | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/devices/bus/kc/d002.h b/src/devices/bus/kc/d002.h index 22454791f36..3a93ee8564c 100644 --- a/src/devices/bus/kc/d002.h +++ b/src/devices/bus/kc/d002.h @@ -5,7 +5,6 @@ #ifndef __KC_D002_H__ #define __KC_D002_H__ -#include "emu.h" #include "kc.h" #include "ram.h" #include "rom.h" diff --git a/src/devices/bus/kc/d004.h b/src/devices/bus/kc/d004.h index cbdd5eb8426..521289a076d 100644 --- a/src/devices/bus/kc/d004.h +++ b/src/devices/bus/kc/d004.h @@ -5,7 +5,6 @@ #ifndef __KC_D004_H__ #define __KC_D004_H__ -#include "emu.h" #include "kc.h" #include "machine/z80ctc.h" #include "cpu/z80/z80.h" diff --git a/src/devices/bus/kc/ram.h b/src/devices/bus/kc/ram.h index 856d26b8016..97e735e64d2 100644 --- a/src/devices/bus/kc/ram.h +++ b/src/devices/bus/kc/ram.h @@ -5,7 +5,6 @@ #ifndef __KC_RAM_H__ #define __KC_RAM_H__ -#include "emu.h" #include "kc.h" //************************************************************************** diff --git a/src/devices/bus/kc/rom.h b/src/devices/bus/kc/rom.h index 5e9e94473b6..9568bcdaea7 100644 --- a/src/devices/bus/kc/rom.h +++ b/src/devices/bus/kc/rom.h @@ -5,7 +5,6 @@ #ifndef __KC_ROM_H__ #define __KC_ROM_H__ -#include "emu.h" #include "kc.h" //************************************************************************** |