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
Using x86.nz.. the resulting bytes should be:
0f294810
The text was updated successfully, but these errors were encountered:
if this is accurate we also have incorrect disasm:
$ rasm2 -a x86 -b 64 -d 0f294810 movaps xmmword [rax + 0x10], xmm1
Sorry, something went wrong.
currently using the last byte as an 8-bit offset for rax:
$ rasm2 -a x86 -b 64 -d 0f294800 movaps xmmword [rax], xmm1
$ rasm2 -a x86 -b 64 -d 0f29481010 movaps xmmword [rax + 0x10], xmm1 invalid
rasm2 cannot assemble "movaps xmmword [rax], xmm1" it should result in 0f2908 (contrary to what is stated above) however, disassembly seems to work:
rasm2 -d -a x86.nz -b 64 "0f2908" movaps xmmword [rax], xmm1
No branches or pull requests
Using x86.nz.. the resulting bytes should be:
0f294810
The text was updated successfully, but these errors were encountered: