Reputation: 299
How can I compile code with Delphi directly to ASM file without using the IDE (ALT + CTRL + D). Something like this can be done with Visual C++ cl.exe /Fa[assembler code filename]
.
Or if that cannot be done can I atleast at bare minimum disassemble it with some meaningful debug information. If so how?
Upvotes: 2
Views: 322
Reputation: 613542
Delphi does not support compilation to assembler. It can output object code, but not assembler.
If you want to disassemble code, there are many disassemblers in existence that can be found with a websearch. Questions asking for tool recommendations are off topic here so that part of your question is, strictly, off topic
Upvotes: 4