diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2015-01-19 10:12:23 -0600 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2015-01-19 10:12:23 -0600 |
| commit | dc95ea2ce64fc4c68d2929f5714e6b61e15480bb (patch) | |
| tree | cf0b23fa62cefc029c631f1eb3bfe43f6c717570 /Source/Core/Common/GekkoDisassembler.cpp | |
| parent | ed58b1fd5b03ab3f466f5ec91d859f4a35d94066 (diff) | |
Minor fix with psq_st{u,}x disassembly.
Diffstat (limited to 'Source/Core/Common/GekkoDisassembler.cpp')
| -rw-r--r-- | Source/Core/Common/GekkoDisassembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/GekkoDisassembler.cpp b/Source/Core/Common/GekkoDisassembler.cpp index 83faa4eb89..5200776526 100644 --- a/Source/Core/Common/GekkoDisassembler.cpp +++ b/Source/Core/Common/GekkoDisassembler.cpp @@ -994,7 +994,7 @@ void GekkoDisassembler::ps(u32 inst) case 7: m_opcode = inst & 0x40 ? "psq_stux" : "psq_stx"; - m_operands = StringFromFormat("p%u, r%u, r%u, %d, qr%d", RA, RB, FS, RA, RB, WX, IX); + m_operands = StringFromFormat("p%u, r%u, r%u, %d, qr%d", FS, RA, RB, WX, IX); return; case 18: |
