I remember back in the day with the old borland DOS compiler you could do something like this:
asm { mov ax,ex etc etc... }
Is there a se
Using GCC
__asm__("movl %edx, %eax\n\t" "addl $2, %eax\n\t");
Using VC++
__asm { mov eax, edx add eax, 2 }