I understand that compilers convert c source code to assembly and then to machine code. I searched through every compiler setting I could find, and their website but I can't get it to generate assembly. Also, the website states that Dev-C++ uses AT&T assembly, can I also convert from that to Intel?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Dev-C++ seems to use GCC. You can try this option: I do not know how to set command line options on Dev-C++ but guides can be easily found. |
|||||
|
__asm("mov %ax,%dx") ; // move AX to DX. There normally is no assembler output, and it would be AT&T style. In this case I would disassemble the object code to Intel assembler. – Joop Eggen Mar 5 '12 at 3:39