Merge pull request #610 from Subv/mufu_8

GPU: Implemented MUFU suboperation 8, sqrt.
This commit is contained in:
bunnei
2018-07-02 22:26:42 -04:00
committed by GitHub
2 changed files with 5 additions and 0 deletions

View File

@ -917,6 +917,10 @@ private:
regs.SetRegisterToFloat(instr.gpr0, 0, "inversesqrt(" + op_a + ')', 1, 1,
instr.alu.saturate_d);
break;
case SubOp::Sqrt:
regs.SetRegisterToFloat(instr.gpr0, 0, "sqrt(" + op_a + ')', 1, 1,
instr.alu.saturate_d);
break;
default:
NGLOG_CRITICAL(HW_GPU, "Unhandled MUFU sub op: {0:x}",
static_cast<unsigned>(instr.sub_op.Value()));