mirror of
https://github.com/wiiu-env/gdbstub_plugin.git
synced 2024-11-22 19:49:15 +01:00
Fix sign in floating point load/store instruction disassembly
This commit is contained in:
parent
44aa519c32
commit
cacee30167
@ -248,7 +248,7 @@ def decode_memory_indexed(instr):
|
|||||||
def decode_memory_float(instr):
|
def decode_memory_float(instr):
|
||||||
def decode(value, addr):
|
def decode(value, addr):
|
||||||
D, A, d = decodeD(value)
|
D, A, d = decodeD(value)
|
||||||
A = extend_sign(A)
|
d = extend_sign(d)
|
||||||
return instr, "f%i, %s(r%i)" %(D, ihex(d), A)
|
return instr, "f%i, %s(r%i)" %(D, ihex(d), A)
|
||||||
return decode
|
return decode
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user