Hi, Everyone
I need your help.
We use control card of F28075.
We try to execute this code.
==================
float32 a,x,y;
x = 0.523598F;
y = sin(x);
a = y/x;
a = y * x;
==================
We calculate on CCS
Run -> clock -> enbale
this cycle is 145 cycle.
but we include math.h.
==================
#include "math.h"
float32 a,x,y;
x = 0.523598F;
y = sin(x);
a = y/x;
a = y * x;
==================
this cycle is 308 cycle.
Do you know why ?
Best Regards
Hiroyasu