Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes disassembly of paired store instructions. #1913

Merged

Conversation

Sonicadvance1
Copy link
Contributor

Someone thought it would be a good idea to have the location as the first argument on the instruction.
Changed it to how it is supposed to be disassembled.

Someone thought it would be a good idea to have the location as the first argument on the instruction.
Changed it to how it is supposed to be disassembled.
@lioncash
Copy link
Member

Looks good.

lioncash added a commit that referenced this pull request Jan 19, 2015
Fixes disassembly of paired store instructions.
@lioncash lioncash merged commit ed58b1f into dolphin-emu:master Jan 19, 2015
@@ -994,7 +994,7 @@ void GekkoDisassembler::ps(u32 inst)

case 7:
m_opcode = inst & 0x40 ? "psq_stux" : "psq_stx";
m_operands = StringFromFormat("(r%u + r%u), p%u, %d, qr%d", RA, RB, FS, WX, IX);
m_operands = StringFromFormat("p%u, r%u, r%u, %d, qr%d", RA, RB, FS, RA, RB, WX, IX);

This comment was marked as off-topic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants