RSP: Rename RspRecompilerCPU to RspRecompilerCPU-x86
This commit is contained in:
parent
5e89701fdf
commit
0c0a46c1e0
|
@ -66,7 +66,7 @@
|
|||
<ClCompile Include="Recompiler\Mmx.cpp" />
|
||||
<ClCompile Include="Recompiler\RspProfiling.cpp" />
|
||||
<ClCompile Include="Recompiler\RspRecompilerAnalysis.cpp" />
|
||||
<ClCompile Include="Recompiler\RspRecompilerCPU.cpp" />
|
||||
<ClCompile Include="Recompiler\RspRecompilerCPU-x86.cpp" />
|
||||
<ClCompile Include="Recompiler\RspRecompilerOps-x86.cpp" />
|
||||
<ClCompile Include="Recompiler\RspRecompilerSections.cpp" />
|
||||
<ClCompile Include="Recompiler\Sse.cpp" />
|
||||
|
@ -97,7 +97,7 @@
|
|||
<ClInclude Include="Hle\mem.h" />
|
||||
<ClInclude Include="Hle\ucodes.h" />
|
||||
<ClInclude Include="Recompiler\RspProfiling.h" />
|
||||
<ClInclude Include="Recompiler\RspRecompilerCPU.h" />
|
||||
<ClInclude Include="Recompiler\RspRecompilerCPU-x86.h" />
|
||||
<ClInclude Include="Recompiler\RspRecompilerOps-x86.h" />
|
||||
<ClInclude Include="Recompiler\X86.h" />
|
||||
<ClInclude Include="RSPDebugger.h" />
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "RSPInfo.h"
|
||||
#include <Project64-rsp-core/Recompiler/RspProfiling.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettings.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettingsID.h>
|
||||
#include <Project64-rsp-core/cpu/RSPCpu.h>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#if defined(__i386__) || defined(_M_IX86)
|
||||
|
||||
#include "RspRecompilerCPU.h"
|
||||
#include "RspRecompilerCPU-x86.h"
|
||||
#include <Common/StdString.h>
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettings.h>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#if defined(__i386__) || defined(_M_IX86)
|
||||
|
||||
#include "RspRecompilerCPU.h"
|
||||
#include "RspRecompilerCPU-x86.h"
|
||||
#include "RspProfiling.h"
|
||||
#include "RspRecompilerOps-x86.h"
|
||||
#include "X86.h"
|
|
@ -1,8 +1,7 @@
|
|||
#if defined(__i386__) || defined(_M_IX86)
|
||||
|
||||
#include "Project64-rsp-core/Recompiler/RspRecompilerCPU.h"
|
||||
#include "RspProfiling.h"
|
||||
#include "RspRecompilerCPU.h"
|
||||
#include "RspRecompilerCPU-x86.h"
|
||||
#include "X86.h"
|
||||
#include <Common/StdString.h>
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#pragma once
|
||||
#if defined(__i386__) || defined(_M_IX86)
|
||||
|
||||
#include <Project64-rsp-core/cpu/RSPInterpreterOps.h>
|
||||
|
||||
class CRSPSystem;
|
||||
|
@ -232,4 +234,6 @@ private:
|
|||
RSPVector * m_Vect;
|
||||
};
|
||||
|
||||
typedef void (CRSPRecompilerOps::*p_Recompfunc)(void);
|
||||
typedef void (CRSPRecompilerOps::*p_Recompfunc)(void);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#if defined(__i386__) || defined(_M_IX86)
|
||||
|
||||
#include "RspRecompilerCPU.h"
|
||||
#include "RspRecompilerCPU-x86.h"
|
||||
#include "X86.h"
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerOps-x86.h>
|
||||
#include <Project64-rsp-core/cpu/RSPCpu.h>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "RspSettings.h"
|
||||
#include "RspSettingsID.h"
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/cpu/RSPCpu.h>
|
||||
#include <Settings/Settings.h>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include <Common/CriticalSection.h>
|
||||
#include <Project64-rsp-core/RSPDebugger.h>
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettings.h>
|
||||
#include <Project64-rsp-core/cpu/RSPRegisters.h>
|
||||
#include <Project64-rsp-core/cpu/RspSystem.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include "RSPCpu.h"
|
||||
#include "RSPRegisters.h"
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/cpu/RspMemory.h>
|
||||
#include <Project64-rsp-core/cpu/RspSystem.h>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <Project64-rsp-core/RSPDebugger.h>
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettings.h>
|
||||
#include <Project64-rsp-core/cpu/RSPCpu.h>
|
||||
#include <Project64-rsp-core/cpu/RSPRegisters.h>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
#include <Project64-rsp-core/Hle/HleTask.h>
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/cpu/RSPInterpreterOps.h>
|
||||
#include <Project64-rsp-core/cpu/RSPRegisters.h>
|
||||
#include <Project64-rsp-core/cpu/RspPipelineStage.h>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "RSPDebuggerUI.h"
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspProfiling.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettings.h>
|
||||
#include <Project64-rsp-core/cpu/RSPCpu.h>
|
||||
#include <Project64-rsp-core/cpu/RSPInstruction.h>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include "resource.h"
|
||||
#include <Project64-rsp-core/RSPInfo.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspProfiling.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU.h>
|
||||
#include <Project64-rsp-core/Recompiler/RspRecompilerCPU-x86.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettings.h>
|
||||
#include <Project64-rsp-core/Settings/RspSettingsID.h>
|
||||
#include <Project64-rsp-core/Version.h>
|
||||
|
|
Loading…
Reference in New Issue