mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
GekkoDisassembler: Fix disassembly of mtfsf's FM field
This commit is contained in:
@@ -2204,7 +2204,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", (unsigned int)(in & 0x01fe) >> 17, (int)PPCGETB(in));
|
||||
m_operands = StringFromFormat("0x%x,%u", (unsigned int)(in >> 17) & 0x01fe, (int)PPCGETB(in));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user