MIPS Decompiler [closed]
Asked Answered
M

3

18

I'm looking for a decompiler capable of transforming MIPS machine code into C code. Any suggestions?

Malissa answered 10/6, 2009 at 17:34 Comment(0)
B
5

You might find this to be useful.

Battik answered 10/6, 2009 at 17:41 Comment(0)
S
9

Assuming you have a MIPS object file or executable file, you can use objdump from the free Code Sourcery Gnu toolchain.

mips-linux-gnu-objdump -d foo.o > foo.S

Shf answered 21/10, 2011 at 23:39 Comment(0)
B
5

You might find this to be useful.

Battik answered 10/6, 2009 at 17:41 Comment(0)
B
3

There is JEB, which now supports decompilation of MIPS 32-bit code. The output (pseudo-C) is interactive and can be refactored/modified. There is a free demo.

Boccherini answered 4/5, 2017 at 16:14 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.