We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
假设您有 MIPS 目标文件或可执行文件,您可以使用免费的 Code Sourcery Gnu 工具链。
mips-linux-gnu-objdump -d foo.o > foo.S
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
您可能会发现此很有用。
You might find this to be useful.
有 JEB,现在支持 MIPS 32 位代码的反编译。 输出(伪 C)是交互式的,可以重构/修改。 有一个免费演示。
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.