mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2026-04-27 04:01:44 +00:00
Implement vavugh
This commit is contained in:
parent
bc9494b003
commit
daa4c009dc
1 changed files with 5 additions and 0 deletions
|
|
@ -1846,6 +1846,11 @@ bool Recompiler::Recompile(
|
||||||
println("\t_mm_store_si128((__m128i*){}.u8, _mm_avg_epu8(_mm_load_si128((__m128i*){}.u8), _mm_load_si128((__m128i*){}.u8)));", v(insn.operands[0]), v(insn.operands[1]), v(insn.operands[2]));
|
println("\t_mm_store_si128((__m128i*){}.u8, _mm_avg_epu8(_mm_load_si128((__m128i*){}.u8), _mm_load_si128((__m128i*){}.u8)));", v(insn.operands[0]), v(insn.operands[1]), v(insn.operands[2]));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PPC_INST_VAVGUH:
|
||||||
|
println("\t_mm_store_si128((__m128i*){}.u16, _mm_avg_epu16(_mm_load_si128((__m128i*){}.u16), _mm_load_si128((__m128i*){}.u16)));",
|
||||||
|
v(insn.operands[0]), v(insn.operands[1]), v(insn.operands[2]));
|
||||||
|
break;
|
||||||
|
|
||||||
case PPC_INST_VCTSXS:
|
case PPC_INST_VCTSXS:
|
||||||
case PPC_INST_VCFPSXWS128:
|
case PPC_INST_VCFPSXWS128:
|
||||||
printSetFlushMode(true);
|
printSetFlushMode(true);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue