base on sleighcraft implement for Multi-architecture assembly instruction matching
pip install bincraft==0.1.0
Obtain valid related instructions for all architectures by input opcode
branch_dict = match_inst("BRANCH", valid_inst=True)
print(branch_dict)
# output
# {'x86': {'0xe9': {'offset': ' 1*offset + 3', 'arch': []}, '0xeb': {'offset': ' 1*offset + 2', 'arch': []}, '0xf4': {'offset': ' 0', 'arch': []}}}
output.txt
are all BRANCH
instructions that currently contain the architecture