user15124
user15124

Reputation: 299

How to compile code to ASM file using dcc32/dcc64?

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

Answers (1)

David Heffernan
David Heffernan

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

Related Questions