I am porting 32 bit C++ code into 64 bit in VS2008. The old code has mixed code written in assembly.
Example:
__asm
{
mov esi, pbSrc
mov edi, pbDest
...
}
I have read somewhere that I need to remove all assembly code and put them all in a separate project and somehow link to it. Can somebody give me the step x step procedure to do this. I know C++ & C# but don't know assembly language. Thanks in advance.