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
import capstone print(capstone.__version__) md = capstone.Cs( capstone.CS_ARCH_X86, capstone.CS_MODE_32 ) insn = next(md.disasm(b'\xf2\xa4', 0, 1)); print('%s %s %s' % (insn.bytes.hex(), insn.mnemonic, insn.op_str)) insn = next(md.disasm(b'\xf2\xa5', 0, 1)); print('%s %s %s' % (insn.bytes.hex(), insn.mnemonic, insn.op_str))
5.0.3
f2a4 repne movsb byte ptr es:[edi], byte ptr [esi] f2a5 movsd dword ptr es:[edi], dword ptr [esi]
It should be:
f2a4 repne movsb byte ptr es:[edi], byte ptr [esi] f2a5 repne movsd dword ptr es:[edi], dword ptr [esi]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
5.0.3
It should be:
The text was updated successfully, but these errors were encountered: