Skip to content

Commit

Permalink
RSP: Rename Types.h to RspTypes.h
Browse files Browse the repository at this point in the history
  • Loading branch information
project64 committed Jun 29, 2023
1 parent 1c61f15 commit 2ce9eaa
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Cpu.cpp
Expand Up @@ -5,7 +5,7 @@
#include "RSP registers.h"
#include "Recompiler CPU.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "breakpoint.h"
#include "log.h"
#include "memory.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Cpu.h
@@ -1,5 +1,5 @@
#include "cpu\RSPOpcode.h"
#include "Types.h"
#include "RspTypes.h"
#include <Windows.h>

extern UDWORD EleSpec[32], Indx[32];
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Interpreter Ops.cpp
Expand Up @@ -3,7 +3,7 @@
#include "RSP Command.h"
#include "RSP Registers.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "dma.h"
#include "log.h"
#include "memory.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Main.cpp
Expand Up @@ -20,7 +20,7 @@
#include "RSP Registers.h"
#include "Recompiler CPU.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "Version.h"
#include "breakpoint.h"
#include "log.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Project64-rsp.vcxproj
Expand Up @@ -83,7 +83,7 @@
<ClInclude Include="RSP Command.h" />
<ClInclude Include="RSP Registers.h" />
<ClInclude Include="Rsp.h" />
<ClInclude Include="Types.h" />
<ClInclude Include="RspTypes.h" />
<ClInclude Include="Version.h" />
<ClInclude Include="X86.h" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions Source/Project64-rsp/Project64-rsp.vcxproj.filters
Expand Up @@ -66,9 +66,6 @@
<ClInclude Include="Rsp.h">
<Filter>Header Files\RSP Header Files</Filter>
</ClInclude>
<ClInclude Include="Types.h">
<Filter>Header Files\RSP Header Files</Filter>
</ClInclude>
<ClInclude Include="X86.h">
<Filter>Header Files\RSP Header Files</Filter>
</ClInclude>
Expand All @@ -81,6 +78,9 @@
<ClInclude Include="cpu\RSPOpcode.h">
<Filter>Header Files\cpu</Filter>
</ClInclude>
<ClInclude Include="RspTypes.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Project64-rsp.rc">
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/RSP Command.cpp
Expand Up @@ -6,7 +6,7 @@
#include "RSP Command.h"
#include "RSP Registers.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "breakpoint.h"
#include "memory.h"
#include "cpu/RSPOpcode.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/RSP Register.cpp
@@ -1,7 +1,7 @@
#include <windows.h>

#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include <commctrl.h>
#include <stdio.h>

Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/RSP Registers.h
@@ -1,4 +1,4 @@
#include "Types.h"
#include "RspTypes.h"

#define SP_STATUS_HALT 0x001 // Bit 0: Halt
#define SP_STATUS_BROKE 0x002 // Bit 1: Broke
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Recompiler Analysis.cpp
Expand Up @@ -3,7 +3,7 @@
#include "RSP Command.h"
#include "Recompiler CPU.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "log.h"
#include "memory.h"
#include "cpu/RSPOpcode.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Recompiler CPU.cpp
Expand Up @@ -11,7 +11,7 @@
#include "Recompiler CPU.h"
#include "Recompiler Ops.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "log.h"
#include "memory.h"
#include "cpu/RSPOpcode.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Recompiler CPU.h
@@ -1,5 +1,5 @@
#include "cpu/RSPOpcode.h"
#include "Types.h"
#include "RspTypes.h"

extern uint32_t CompilePC, NextInstruction, JumpTableSize;
extern Boolean ChangedPC;
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Recompiler Ops.cpp
Expand Up @@ -6,7 +6,7 @@
#include "RSP Registers.h"
#include "Recompiler CPU.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "dma.h"
#include "log.h"
#include "memory.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Recompiler Sections.cpp
Expand Up @@ -6,7 +6,7 @@
#include "RSP Registers.h"
#include "Recompiler CPU.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "dma.h"
#include "log.h"
#include "memory.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/Rsp.h
@@ -1,7 +1,7 @@
#pragma once
#include <Project64-plugin-spec/Rsp.h>

#include "Types.h"
#include "RspTypes.h"
#include <stdint.h>

// Profiling
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Source/Project64-rsp/X86.cpp
Expand Up @@ -3,7 +3,7 @@

#include "RSP registers.h"
#include "Rsp.h"
#include "Types.h"
#include "RspTypes.h"
#include "log.h"
#include "memory.h"
#include "x86.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp/memory.h
@@ -1,4 +1,4 @@
#include "Types.h"
#include "RspTypes.h"

int AllocateMemory(void);
void FreeMemory(void);
Expand Down

0 comments on commit 2ce9eaa

Please sign in to comment.