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?
相关问题
- Multiple sockets for clients to connect to
- How to know full paths to DLL's from .csproj f
- Importing NuGet references through a local project
- What is the best way to do a search in a large fil
- Visual Studio 2019 - error MSB8020: The build tool
Configuration Properties -> C/C++ -> Output Files
branchNo Listing
Project->Properties->Configuration Properties->C/C++->Output Files
There you should see an option for Assembler Output.
John.
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.