diff --git a/src/burn/drv/cps3/cps3run.cpp b/src/burn/drv/cps3/cps3run.cpp index 37ed75b95..9e8ca8c8f 100644 --- a/src/burn/drv/cps3/cps3run.cpp +++ b/src/burn/drv/cps3/cps3run.cpp @@ -18,7 +18,7 @@ Port to FBA by OopsWare **********************************************************************/ #include "cps3.h" -#include "sh2.h" +#include "sh2_intf.h" #define BE_GFX 1 //#define FAST_BOOT 1 diff --git a/src/burn/drv/psikyo/d_psikyo4.cpp b/src/burn/drv/psikyo/d_psikyo4.cpp index 04e835cd0..b29de9631 100644 --- a/src/burn/drv/psikyo/d_psikyo4.cpp +++ b/src/burn/drv/psikyo/d_psikyo4.cpp @@ -4,7 +4,7 @@ #include "tiles_generic.h" #include "burn_ymf278b.h" #include "eeprom.h" -#include "sh2.h" +#include "sh2_intf.h" static UINT8 *AllMem; static UINT8 *DrvSh2ROM; diff --git a/src/burn/drv/psikyo/d_psikyosh.cpp b/src/burn/drv/psikyo/d_psikyosh.cpp index 87c7a5cbe..7ff3d9f32 100644 --- a/src/burn/drv/psikyo/d_psikyosh.cpp +++ b/src/burn/drv/psikyo/d_psikyosh.cpp @@ -9,7 +9,7 @@ #include "psikyosh_render.h" #include "burn_ymf278b.h" #include "eeprom.h" -#include "sh2.h" +#include "sh2_intf.h" static UINT8 *AllMem; static UINT8 *MemEnd; diff --git a/src/burn/hiscore.cpp b/src/burn/hiscore.cpp index d364a83cb..6cc6ccf0d 100644 --- a/src/burn/hiscore.cpp +++ b/src/burn/hiscore.cpp @@ -2,7 +2,7 @@ #include "m68000_intf.h" #include "z80_intf.h" #include "nec_intf.h" -#include "sh2.h" +#include "sh2_intf.h" #include "m6502_intf.h" #include "m6809_intf.h" #include "hd6309_intf.h" diff --git a/src/burn/timer.cpp b/src/burn/timer.cpp index 0ba838184..8beb59837 100644 --- a/src/burn/timer.cpp +++ b/src/burn/timer.cpp @@ -7,7 +7,7 @@ #include "hd6309_intf.h" #include "m6800_intf.h" #include "m6502_intf.h" -#include "sh2.h" +#include "sh2_intf.h" #include "h6280_intf.h" #define MAX_TIMER_VALUE ((1 << 30) - 65536) diff --git a/src/cpu/sh2/sh2.cpp b/src/cpu/sh2/sh2.cpp index bade60d5f..57440c9a8 100644 --- a/src/cpu/sh2/sh2.cpp +++ b/src/cpu/sh2/sh2.cpp @@ -34,7 +34,7 @@ //#include #include "burnint.h" -#include "sh2.h" +#include "sh2_intf.h" //#include "tchar.h" //extern int (__cdecl *bprintf) (int nStatus, TCHAR* szFormat, ...); diff --git a/src/cpu/sh2/sh2.h b/src/cpu/sh2_intf.h similarity index 100% rename from src/cpu/sh2/sh2.h rename to src/cpu/sh2_intf.h