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?
+3
A:
Project->Properties->Configuration Properties->C/C++->Output Files
There you should see an option for Assembler Output.
John.
John Richardson
2008-08-29 16:31:18
+1
A:
- Open the Properties page for a project
- Select the
Configuration Properties -> C/C++ -> Output Files
branch - Change the Assembler Output option to something other than
No Listing
- Make sure ASM List Location is set to a valid path or sub-path
- Build.
Shog9
2008-08-29 16:31:32
+1
A:
Or if using the Visual Studio command line,
cl.exe /Fa[assembler code filename]
If you just want to view the assembler code in the IDE you can start the debugger and then select the Go To Dissassembly choice on the right click menu.
Andrew O'Reilly
2008-08-29 23:07:07