Hi all,I am using the Delay function as follows.static void Delay(volatile int d) { d = d*20; while (d--) asm volatile("NOP"); }However, sometimes when adding printf code, Delay function becomes slow.So, when I analyzed the cause, I was able to...