mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix matrix disassembly notation
Changed disassembler output to match gas input for operations on transposed matrices where row != col.
This commit is contained in:
parent
7131148cdb
commit
2ed4c1bd6b
1 changed files with 4 additions and 1 deletions
|
@ -460,7 +460,10 @@ const char *GetMatrixNotation(int reg, MatrixSize size)
|
|||
default: c='?'; break;
|
||||
}
|
||||
if (transpose && c=='M') c='E';
|
||||
sprintf(hej[yo],"%c%i%i%i",c,mtx,col,row);
|
||||
if (transpose)
|
||||
sprintf(hej[yo],"%c%i%i%i",c,mtx,row,col);
|
||||
else
|
||||
sprintf(hej[yo],"%c%i%i%i",c,mtx,col,row);
|
||||
return hej[yo];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue