Hi all, I have a few questions about debugging in MPLAB. First, I have a bit of code as follows: RC5 = 1; delayMs(500); RC5 = 0; 1. If i run this using 'F9' then it takes forever to run through that 500 ms delay routine. I figured it should only take a couple seconds. 2. If I use 'F8' (step over) the MPLAB steps into the delay routine. That's not stepping over? In borland C the step over function key doesn't step into the function...but it does so in MPLAB. I can't figure it out. Dave