Hello,
i want to make use of the intrinsic _cmpyr function for complex multiply and used it like this:
unsigned int r,a,b;
a = 0x00040003;
b = 0x00020007;
r = _cmpyr(a, b);
System_printf("Result %d\n",r);
but the result i get is "0" do you know how this can happen?
Is this the right code for multiplying 3+4i * 7+2i ??
Even when im multiplying 0x00030004 * 0x00070002 with _cmpyr i get 0 as the result.
best regards
Florian