Active: Flash System Clock: 80Mhz Condition: All peripherals off // Initialization float32 vo1=2430, vo2, vo3; Uint16 vo4, v1=2400,v2=2410,v3=2420,v4=2430,v5=2440; //Code to be tested w.r.t. clock cycles taken to execute each of these instructions vo2 = (vo1/3630); vo3 = (vo2 * 3); vo4 = ((v1 + v2 + v3 + v4 + v5)/5); Steps to note down the Observations: CCS5 1.Compile and Debug the code 2. Once in debugging mode, by using "Run to Line" go to the first line of the code and turn on the "Clock" from Run Menu in compiler. 3. Once done, by pressing F5 or by clicking on "Step into" option one can check the cycles consumed by the above individual instructions.