We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What am I doing wrong?
>>> from capstone import * >>> md = Cs(CS_ARCH_MIPS, CS_MODE_MIPS32|CS_MODE_BIG_ENDIAN) >>> next(md.disasm(b'\x01\x20\x10\x2d', 0x100)) Traceback (most recent call last): File "<stdin>", line 1, in <module> StopIteration
But if I use rasm2:
$ rasm2 -a mips -e -d '0120102d' move v0, t1
Unknow opcodes: 0120102d -> move v0, t1 0080e82d -> move sp, a0 40ab5000 -> dmtc0 t3, $10 00a0402d -> move t0, a1 0080502d -> move t2, a0 01a0702d -> move t6, t5 40ac1000 -> dmtc0 t4, $2 ... and etc.
The text was updated successfully, but these errors were encountered:
I ran into this as well. Additionally, it looks like llvm-mc in the latest llvm release fails to disassemble these instructions.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
What am I doing wrong?
But if I use rasm2:
$ rasm2 -a mips -e -d '0120102d' move v0, t1
Unknow opcodes:
0120102d -> move v0, t1
0080e82d -> move sp, a0
40ab5000 -> dmtc0 t3, $10
00a0402d -> move t0, a1
0080502d -> move t2, a0
01a0702d -> move t6, t5
40ac1000 -> dmtc0 t4, $2
...
and etc.
The text was updated successfully, but these errors were encountered: