09-27-2019 04:09 AM
How to compute the time taken to execute a program without using loop and shift register?
09-27-2019 05:53 AM
09-27-2019 07:32 AM
This is one of those rare times that Frame Sequences make sense. Create three Frames. In the first, put a High Resolution Timer. In the second, place the code you want to time. In the third, place a second High Resolution Timer. Subtract the first Time from the second. The Frames guarantee that the first Time is before any of your code runs, the second is after, so the time between is the time for your code.
Bob Schor