Hi Guys, Upon referring to the file(5732.assembly.h).
Peace of code in the file::
//inline rountines with access to 64-bit multiply results
//- x86 (_WIN32) and ARM (ARM_ADS, _WIN32_WCE) versions included
// MADD64(sum, x, y) (Windows only) sum [64-bit] += x [32-bit] * y [32-bit]
static __inline Word64 MADD64(Word64 sum, int x, int y)
{
unsigned int sumLo = ((unsigned int *)&sum)[0];
int sumHi = ((int *)&sum)[1];
__asm {
mov eax, x
imul y
add eax, sumLo
adc edx, sumHi
}
/* equivalent to return (sum + ((__int64)x * y)); */
}
Does anybody know or is it possible to access windows instruction in CCS??
Using F28069 experimeter board!
Thanks,
Rahul