Hello all,
I am writing an application in C in GCC (for linux/ubuntu) that uses the following inline assembly:
float a[4] = { 10, 20, 30, 40 };
float b[4] = { 0.1, 0.1, 0.1, 0.1 };
asm volatile("movups (%0), %%xmm0\n\t"
"mulps (%1), %%xmm0\n\t"
"movups %%xmm0, (%1)"
:: "r" (a), "r" (b));
Excuse typos in the above (im writing from memory). My question is what is the equivalent inline asm in visual c++ 6.0 ? I have discovered that I need to port my code.
Thanks in advance