You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the feature you'd like
For cstool details, add a line to show the length of the instruction/data unit. I suggest "Len: <bytes>" since that is how the information is stored in the cs_insn structure size field.
Additional context
Add this line before the final printf("\n"); in print_details() function in cstool/cstool.c:
printf("\tLen: %d\n", ins->size);
The text was updated successfully, but these errors were encountered:
Feature
language
Describe the feature you'd like
For cstool details, add a line to show the length of the instruction/data unit. I suggest "Len: <bytes>" since that is how the information is stored in the
cs_insn
structuresize
field.Additional context
Add this line before the final
printf("\n");
inprint_details()
function incstool/cstool.c
:The text was updated successfully, but these errors were encountered: