13.07.2015 Views

DSP56xxx C Cross-Compiler User's Guide - Tasking

DSP56xxx C Cross-Compiler User's Guide - Tasking

DSP56xxx C Cross-Compiler User's Guide - Tasking

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

3–84Chapter 3_fract output=0.0;_fract _X x[10];_fract _Y c[10];main(){int i;for(i=0; i < 10; i++)output += x[i]*c[i];}output_fract output=0.0;_fract _X x[10];_fract _Y c[10];main(){int i;_fract tmp = output; // copy to temporary variablefor(i=0; i < 10; i++)tmp += x[i]*c[i]; // use temporary variableoutput = tmp; // get value from temporary variable}

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!