Assembling Visual Studio generated listing files

Assembling Visual Studio generated listing files

am 03.12.2007 19:58:21 von TahoeKid

I need to modify and assemble the assembler listing files generated
from the VS 2005 IDE.

A test generated listing file did not assmeble 'as is'.

Has anyone tried this? It seems to me the listing file should
assemble.

Re: Assembling Visual Studio generated listing files

am 04.12.2007 08:26:28 von nemtsev

Hello TahoeKid,

VS generate managed code to the intemediate language (IL), not the assemble
code.

if u wanna change that IL code u need to use ILDASM tool to modify the assembly

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


T> I need to modify and assemble the assembler listing files generated
T> from the VS 2005 IDE.
T> A test generated listing file did not assmeble 'as is'.
T> Has anyone tried this? It seems to me the listing file should
T> assemble.