I am using visual studio 2008, and I don't know how to use an assembly file (hopefully .asm) in my project, can someone point me in the right direction?
In standard C++ you have the asm keyword working like this: asm("assembly code as string");
In Microsoft C++ you have the __asm keyword working like this:
1 2 3 4
__asm
{
assembly code as normal code
}
If you have assembly files you need to link those to your project