I'm looking for a decompiler capable of transforming MIPS machine code into C code. Any suggestions?
MIPS Decompiler [closed]
Asked Answered
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
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.
© 2022 - 2024 — McMap. All rights reserved.