This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

请问这条语句应该是多少个cycle呢?



C6678LE评估板,IIC启动方式,没有做任何配置上的修改。

#define LOOP 1000000000

for(i=0;i<LOOP;i++) {
;
}

追加一条

for(i = 0;i < LOOP; i++)
{
asm(" NOP 5");
}