Reputation: 177
Is it possible to compile a .cs directly in x86 code ? I mean, I want to observe what happened with IDA Pro, so I didn't want IL code but asm code.
Thanks
Upvotes: 1
Views: 307
Reputation: 9725
IDA won't load native parts from NGEN'd assemblies, unfortunately. The only way I found was to use the Visual Studio debugger.
If you're not interested specifically in the Microsoft .NET framework internals, but in any other JIT as well, you can play with mono --aot, which produces normal PE or ELF executables (and even the readable assembler sources).
Upvotes: 1