Visual Studio Assembly – How to Get Assembler Output from a C File in VS2005

assemblyc++visual-studio

I think the file that is produced is an .asm file, any idea how to produce this in Visual Studio when you do a build?

Best Answer

  1. Open the Properties page for a project
  2. Select the Configuration Properties -> C/C++ -> Output Files branch
  3. Change the Assembler Output option to something other than No Listing
  4. Make sure ASM List Location is set to a valid path or sub-path
  5. Build.
Related Question