mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 01:08:39 +12:00
- Implemented ARM9Thread.
- Improved OpenGL Renderer. - Improved RAW SPU mfc.
This commit is contained in:
parent
6622dc42b5
commit
0b35be32a4
65 changed files with 3255 additions and 2207 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue