I am migrating 32-bit C ++ code to 64-bit in VS2008. Old code has mixed code written in assembly.
Example:
__asm
{
mov esi, pbSrc
mov edi, pbDest
...
}
I read somewhere that I need to delete all the assembly code and put them all in a separate project and somehow connect with it. Can someone give me a step by step step by step step for this. I know C ++ and C #, but I don't know assembly language. Thanks in advance.
source
share