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
I'm trying to make iced_x86 to format something like call 0x1234:0x5678 as call far FUN_1234_5678. Using SymbolResolver Rust API and NASM formatter, I can only manage something like this: call (seg FUN_1234_5678):FUN_1234_5678. This, while accepted by NASM, is not ideal. It would be good to be able to resolve symbols this way without having to do manual formatting for those calls.
That's my attempt on resolving symbols:
I'm trying to make iced_x86 to format something like
call 0x1234:0x5678
ascall far FUN_1234_5678
. UsingSymbolResolver
Rust API and NASM formatter, I can only manage something like this:call (seg FUN_1234_5678):FUN_1234_5678
. This, while accepted by NASM, is not ideal. It would be good to be able to resolve symbols this way without having to do manual formatting for those calls.That's my attempt on resolving symbols:
The text was updated successfully, but these errors were encountered: