Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C++ to Assembler Converter?

Status
Not open for further replies.

tyme

Programmer
Oct 17, 2003
1
US
Does anyone know of a program to convert c/c++ code to asm and show the output. I know this is possible since all the high level compilers do this, but I want to see the output code.
 
Check your compiler's literature. Many have an option to do just this. If yours doesn't, just get a disassembler.
 
The most C++ compillers have this feature builtin. For example if you compile with bcc, pass option -S and you will get C++ translated to asm code.

Ion Filipski
1c.bmp

ICQ: 95034075
AIM: IonFilipski
filipski@excite.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top