-
Hello, I'd like to put more spaces between the address and the instruction. I'm guessing that I probably need to hook one of the ZYDIS_FORMATTER_FUNC.... functions but, I am not sure which one. The questions are: is a formatter function hook the only/simplest way of controlling the number of spaces between the address and the instruction text ?... if it isn't what's the simplest way, if it is then which function should I hook ? To make it crystal clear what I'm trying to do, I want to go from this (the default output): Thank you for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The leading address is not really part of the formatter output. It's just manually written: zydis/examples/DisassembleSimple.c Line 60 in ffde0f4 You can add as many spaces to the format specifier string template as you like. |
Beta Was this translation helpful? Give feedback.
The leading address is not really part of the formatter output. It's just manually written:
zydis/examples/DisassembleSimple.c
Line 60 in ffde0f4
You can add as many spaces to the format specifier string template as you like.