Oct 19, 2003 #1 malec Programmer Joined Oct 19, 2003 Messages 1 Location ZA Is there a way to convert C++ code to pure assembly code ?
Oct 20, 2003 #2 globos Programmer Joined Nov 8, 2000 Messages 260 Location FR Hi, Yes it's possible, it depends on the compiler you use. With g++, just use the -S compiler option(Compile only, do not assemble or link). $prompt> g++ -S main.cpp -- Globos Upvote 0 Downvote
Hi, Yes it's possible, it depends on the compiler you use. With g++, just use the -S compiler option(Compile only, do not assemble or link). $prompt> g++ -S main.cpp -- Globos