This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""1-byte opcode list grouped by octet. | |
So, pretty much http://www.sandpile.org/x86/opc_1.htm but worse! | |
Requires: capstone, colorama (windows), click | |
""" | |
import capstone | |
import click | |
engine = capstone.Cs(capstone.CS_ARCH_X86, capstone.CS_MODE_32) |