mffs instruction should load to floating-point register. (#158)

This commit is contained in:
squidbus 2025-07-19 02:57:04 -07:00 committed by GitHub
parent 865319a39c
commit 5a945705de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1241,7 +1241,7 @@ bool Recompiler::Recompile(
break;
case PPC_INST_MFFS:
println("\t{}.u64 = ctx.fpscr.loadFromHost();", r(insn.operands[0]));
println("\t{}.u64 = ctx.fpscr.loadFromHost();", f(insn.operands[0]));
break;
case PPC_INST_MFLR: