PPC: Fix typo in instruction disassembly for mtspr.

This commit is contained in:
Parker Lamb
2017-05-19 14:14:12 -05:00
parent aab946a36b
commit 4b607a68ba
2 changed files with 3 additions and 3 deletions

View File

@@ -1689,9 +1689,9 @@ void PrintDisasm_mtmsrd(const PPCDecodeData& d, StringBuffer* str) {
str->AppendFormat("r%d", d.X.RS());
}
void PrintDisasm_mtspr(const PPCDecodeData& d, StringBuffer* str) {
// mtmspr [SPR], [RS]
// mtspr [SPR], [RS]
size_t str_start = str->length();
str->Append("mtmspr");
str->Append("mtspr");
PadStringBuffer(str, str_start, kNamePad);
str->AppendFormat("%d", d.XFX.SPR());
str->Append(", ");