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
Both rasm2 and radare2 disassemble thumb as big-endian.
32bit arm is OK:
$ echo "7f0000ea" | rasm2 -a arm -b 32 -d -f - b 0x00000204
But 16bit arm doesn't flip the bytes:
$ echo "80b4" | rasm2 -a arm -b 16 -d -f - strh r4, [r6, #4] $ echo "b480" | rasm2 -a arm -b 16 -d -f - push {r7}
-e does nothing:
$ echo "80b4" | rasm2 -a arm -b 16 -d -e -f - strh r4, [r6, #4]
The text was updated successfully, but these errors were encountered:
arm.winedbg works fine.
$ echo "80b4" | rasm2 -a arm.winedbg -b 16 -d -f - push {r7}
Sorry, something went wrong.
Enable thumb byte swapping. Fixes #117 #116
478d38c
No branches or pull requests
Both rasm2 and radare2 disassemble thumb as big-endian.
32bit arm is OK:
But 16bit arm doesn't flip the bytes:
-e does nothing:
The text was updated successfully, but these errors were encountered: