How to get assembler output from file C in VS2005

I think the file that is being created is an .asm file, any idea how to do this in Visual Studio when you do the assembly?

+5
source share
3 answers
  • Open the Properties page for the project.
  • Choose a branch Configuration Properties -> C/C++ -> Output Files
  • Change the Assembler parameter to something other than No Listing
  • Verify that the ASM List location has a valid path or subdirectory
  • Build.
+5
source

Project-> Properties-> Configuration Properties-> C / C ++ → Output Files

There you should see the option to exit the assembler.

John.

+5
source

Or, if you use the Visual Studio command line,

cl.exe / Fa [assembler file name]

If you just want to view the assembler code in the IDE, you can run the debugger and then select the Go To Dissassembly option from the right-click menu.

+2
source

All Articles