void spu_interpreter::BI(SPUThread& CPU, spu_opcode_t op) { if (op.d || op.e) { throw __FUNCTION__; } CPU.SetBranch(SPUOpcodes::branchTarget(CPU.GPR[op.ra]._u32[3], 0)); }
void spu_interpreter::BISL(SPUThread& CPU, spu_opcode_t op) { if (op.d || op.e) { throw __FUNCTION__; } const u32 target = SPUOpcodes::branchTarget(CPU.GPR[op.ra]._u32[3], 0); CPU.GPR[op.rt] = u128::from32r(CPU.PC + 4); CPU.SetBranch(target); }