- Implemented ARM9Thread.

- Improved OpenGL Renderer.
- Improved RAW SPU mfc.
This commit is contained in:
DH 2013-11-03 21:23:16 +02:00
parent 6622dc42b5
commit 0b35be32a4
65 changed files with 3255 additions and 2207 deletions

View file

@ -362,7 +362,7 @@ void CompilePPUProgram::DetectArgInfo(Arg& arg)
return;
}
if(GetInstruction<PPU_Opcodes>(str))
if(GetInstruction<PPUOpcodes>(str))
{
arg.type = ARG_INSTR;
return;
@ -1397,17 +1397,9 @@ void CompilePPUProgram::Compile()
LoadArgs();
auto instr = GetInstruction<PPU_Opcodes>(op);
auto instr = GetInstruction<PPUOpcodes>(op);
if(instr)
{
/*
FIELD_IMM,
FIELD_R_GPR,
FIELD_R_FPR,
FIELD_R_VPR,
FIELD_R_CR,
FIELD_BRANCH,
*/
uint type[] =
{
ARG_IMM,