I'm looking for a decompiler capable of transforming MIPS machine code into C code. Any suggestions?
Asked
Active
Viewed 1.1k times
3 Answers
8
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

markgz
- 6,054
- 1
- 19
- 41