Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MS Visual Studio 2010 how to use the .asm generated file

I would like to ask about something I am thinking to try with Visual Studio 2010.

I am generating an .asm file from the.cpp file by setting the option to the "Assembler Output" in the project properties --> C/C++ --> Output Files (/FAs).

My question is, how can I on a next step use that .asm generated file to link again from that one without using anymore the .cpp file, in case I want to do some modifications inside the .asm file and then link again by keeping the modifications I did at assembly level.

It would be very helpful if you could provide the exact steps, including the correct configuration may needed in the project properties.

like image 530
Economou Kyriakos Avatar asked Oct 11 '11 22:10

Economou Kyriakos


1 Answers

Here is a tutorial http://www.cs.virginia.edu/~evans/cs216/guides/vsasm.html

like image 173
MartyTPS Avatar answered Sep 18 '22 00:09

MartyTPS