[Project64] Cleanup RecompilerClass.cpp
This commit is contained in:
parent
21bce73cca
commit
c3a9525006
|
@ -17,10 +17,10 @@
|
|||
#include <Objbase.h>
|
||||
|
||||
CRecompiler::CRecompiler(CRegisters & Registers, CProfiling & Profile, bool & EndEmulation) :
|
||||
m_Registers(Registers),
|
||||
m_Profile(Profile),
|
||||
m_EndEmulation(EndEmulation),
|
||||
PROGRAM_COUNTER(Registers.m_PROGRAM_COUNTER)
|
||||
m_Registers(Registers),
|
||||
m_Profile(Profile),
|
||||
m_EndEmulation(EndEmulation),
|
||||
PROGRAM_COUNTER(Registers.m_PROGRAM_COUNTER)
|
||||
{
|
||||
if (g_MMU != NULL)
|
||||
{
|
||||
|
|
|
@ -34,7 +34,7 @@ public:
|
|||
Remove_StoreInstruc,
|
||||
};
|
||||
|
||||
typedef void (*DelayFunc)();
|
||||
typedef void(*DelayFunc)();
|
||||
|
||||
public:
|
||||
CRecompiler(CRegisters & Registers, CProfiling & Profile, bool & EndEmulation);
|
||||
|
@ -45,8 +45,8 @@ public:
|
|||
void ResetRecompCode(bool bAllocate);
|
||||
|
||||
//Self modifying code methods
|
||||
void ClearRecompCode_Virt ( uint32_t VirtualAddress, int32_t length, REMOVE_REASON Reason );
|
||||
void ClearRecompCode_Phys ( uint32_t PhysicalAddress, int32_t length, REMOVE_REASON Reason );
|
||||
void ClearRecompCode_Virt(uint32_t VirtualAddress, int32_t length, REMOVE_REASON Reason);
|
||||
void ClearRecompCode_Phys(uint32_t PhysicalAddress, int32_t length, REMOVE_REASON Reason);
|
||||
|
||||
void ResetMemoryStackPos();
|
||||
|
||||
|
|
Loading…
Reference in New Issue