Search

Search found 1 match

by maarten
Sun Jun 11, 2023 4:00 am
Forum: Code/Decompilation
Topic: do yall have a formal decompilation project people can contribute to
Replies: 4
Views: 4161

Re: do yall have a formal decompilation project people can contribute to

In my re project, I tag every symbol with an address. This can be done with macros and/or comments. e.g. #define ISLE_VARIABLE(TYPE, NAME, ADDRESS) int g_variable; ISLE_VARIABLE(int, g_variable, 0x1234567) (it's also a must for my project since it hooks the original executable) The string <-> name m...