SPU DisAsm: fix disasm for BINZ and similar instruction

This commit is contained in:
Nekotekina 2020-04-04 15:35:25 +03:00
parent a53d0d50b3
commit 18dbd788e6

View File

@ -152,7 +152,7 @@ private:
}
void DisAsm(std::string op, field_de_t de, const char* a1, const char* a2)
{
Write(fmt::format("%s %s", FixOp(op.append(BrIndirectSuffix(de))), a1, a2));
Write(fmt::format("%s %s,%s", FixOp(op.append(BrIndirectSuffix(de))), a1, a2));
}
public: