While trying to use qbindiff on a ARM32 Thumb program, i got the following exception:
Cannot guess the instruction set of the instruction at 0x....
I fixed the issue by hard-coding the mode and arch inside the file qbindiff/loader/backend/binexport.py but it could be cool to let the user define the arch and mode when he knows it, something like:
differ = qbindiff.QBinDiff(
p, q,
distance=Distance.canberra,
...,
arch="ARM-32",
mode="THUMB"
)
While trying to use qbindiff on a ARM32 Thumb program, i got the following exception:
I fixed the issue by hard-coding the mode and arch inside the file
qbindiff/loader/backend/binexport.pybut it could be cool to let the user define the arch and mode when he knows it, something like: