Feature
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);
Feature
languageDescribe 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_insnstructuresizefield.Additional context
Add this line before the final
printf("\n");inprint_details()function incstool/cstool.c: