Remove unused code

This commit is contained in:
Henrik Rydgard 2016-04-14 12:18:53 +02:00
parent 6e5e496115
commit 4645473dab
4 changed files with 1 additions and 17 deletions

View File

@ -2165,6 +2165,7 @@ static u32 sceKernelLoadModuleDNAS(const char *name, u32 flags)
return 0;
}
// Pretty sure this is a badly brute-forced function name...
static SceUID sceKernelLoadModuleBufferUsbWlan(u32 size, u32 bufPtr, u32 flags, u32 lmoptionPtr)
{
if (flags != 0) {

View File

@ -85,19 +85,6 @@ int MIPS_SingleStep()
return 1;
}
u32 MIPS_GetNextPC()
{
if (mipsr4k.inDelaySlot)
return mipsr4k.nextPC;
else
return mipsr4k.pc + 4;
}
void MIPS_ClearDelaySlot()
{
mipsr4k.inDelaySlot = false;
}
namespace MIPSInt
{
void Int_Cache(MIPSOpcode op)

View File

@ -19,8 +19,6 @@
#include "Common/CommonTypes.h"
u32 MIPS_GetNextPC();
void MIPS_ClearDelaySlot();
int MIPS_SingleStep();
namespace MIPSInt

View File

@ -19,8 +19,6 @@
#include "Common/CommonTypes.h"
u32 MIPS_GetNextPC();
void MIPS_ClearDelaySlot();
int MIPS_SingleStep();
namespace MIPSInt