Oct 19, 2003 #1 malec Programmer Oct 19, 2003 1 ZA Is there a way to convert C++ code to pure assembly code ?
Oct 20, 2003 #2 globos Programmer Nov 8, 2000 260 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