Skip to content
Permalink
Browse files
Merge pull request #7469 from Tilka/mtfsf
GekkoDisassembler: fix mtfsf yet again
  • Loading branch information
Tilka committed Oct 8, 2018
2 parents 8293cd0 + b378865 commit feaa466
Showing 1 changed file with 1 addition and 1 deletion.
@@ -2242,7 +2242,7 @@ u32* GekkoDisassembler::DoDisassembly(bool big_endian)
if ((in & 0x02010000) == 0)
{
m_opcode = StringFromFormat("mtfsf%s", rcsel[in & 1]);
m_operands = StringFromFormat("0x%x,%u", (in >> 17) & 0xff, regnames[PPCGETB(in)]);
m_operands = StringFromFormat("0x%x, f%u", (in >> 17) & 0xff, PPCGETB(in));
}
else
{

0 comments on commit feaa466

Please sign in to comment.