is there any software that generate assembly code for a given c++ code?
This is a discussion on c++ to assembly within the C++ Programming forums, part of the General Programming Boards category; is there any software that generate assembly code for a given c++ code?...
is there any software that generate assembly code for a given c++ code?
Yes it's called a disassembler. MSVC has one in its application debug.
Although, disassemblers don't convert C++ source to assembly, they convert the compiled exe. SoftICE would be another example of a disassembler.
quote :
is there any software that generate assembly code for a given c++ code?
yes : your compiler.
search in your doc for the " generate_assembly_file " option.
>Yes it's called a disassembler.
Wrong.
>your compiler.
Right.
programming terms are confusing.
I thought it was the linker or builder or something.
think only with code.
write only with source.