From 568226d5ffbea20c56776824236d8151f4dd5721 Mon Sep 17 00:00:00 2001 From: zilmar Date: Sun, 8 Nov 2015 17:20:04 +1100 Subject: [PATCH] [Project64] Remove Delay Slot Map Class.h and Exit Info.cpp --- Source/Project64/N64 System.h | 1 - .../Recompiler/Delay Slot Map Class.h | 29 ------------------- .../N64 System/Recompiler/Exit Info.cpp | 0 3 files changed, 30 deletions(-) delete mode 100644 Source/Project64/N64 System/Recompiler/Delay Slot Map Class.h delete mode 100644 Source/Project64/N64 System/Recompiler/Exit Info.cpp diff --git a/Source/Project64/N64 System.h b/Source/Project64/N64 System.h index 2b37e1ca3..db180e08f 100644 --- a/Source/Project64/N64 System.h +++ b/Source/Project64/N64 System.h @@ -65,7 +65,6 @@ class CNotification; #include "N64 System/Recompiler/Section Info.h" #include "N64 System/Recompiler/Function Info.h" #include "N64 System/Recompiler/Function Map Class.h" -#include "N64 System/Recompiler/Delay Slot Map Class.h" #include "N64 System/Recompiler/Recompiler Class.h" #include "N64 System/Recompiler/x86CodeLog.h" diff --git a/Source/Project64/N64 System/Recompiler/Delay Slot Map Class.h b/Source/Project64/N64 System/Recompiler/Delay Slot Map Class.h deleted file mode 100644 index d68152166..000000000 --- a/Source/Project64/N64 System/Recompiler/Delay Slot Map Class.h +++ /dev/null @@ -1,29 +0,0 @@ -/**************************************************************************** -* * -* Project 64 - A Nintendo 64 emulator. * -* http://www.pj64-emu.com/ * -* Copyright (C) 2012 Project64. All rights reserved. * -* * -* License: * -* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html * -* * -****************************************************************************/ -#pragma once - -class CDelaySlotFunctionMap -{ - typedef std::map FUNCTION_MAP; - - FUNCTION_MAP FunctionMap; - -public: - CDelaySlotFunctionMap(); - ~CDelaySlotFunctionMap(); - - CCompiledFunc* AddFunctionInfo(DWORD vAddr, DWORD pAddr); - CCompiledFunc* FindFunction(DWORD vAddr, int Length); - CCompiledFunc* FindFunction(DWORD vAddr) const; - - void Remove(CCompiledFunc* info); - void Reset(); -}; diff --git a/Source/Project64/N64 System/Recompiler/Exit Info.cpp b/Source/Project64/N64 System/Recompiler/Exit Info.cpp deleted file mode 100644 index e69de29bb..000000000