mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
24 lines
415 B
C++
24 lines
415 B
C++
#include "Common/ChunkFile.h"
|
|
#include "Core/Core.h"
|
|
#include "Core/CoreTiming.h"
|
|
#include "Core/MIPS/MIPS.h"
|
|
#include "Core/MIPS/MIPSCodeUtils.h"
|
|
#include "Core/MIPS/MIPSInt.h"
|
|
#include "Core/MIPS/MIPSTables.h"
|
|
|
|
#include "PpcRegCache.h"
|
|
#include "ppcEmitter.h"
|
|
#include "PpcJit.h"
|
|
|
|
#include <ppcintrinsics.h>
|
|
|
|
using namespace PpcGen;
|
|
|
|
namespace MIPSComp
|
|
{
|
|
|
|
void Jit::Comp_ITypeMem(u32 op) {
|
|
Comp_Generic(op);
|
|
}
|
|
|
|
} |