fractionalSeconds = ElapsedTime(context);
D0 A0
ULONG ElapsedTime(struct EClockVal *);
This function utilizes the
timer.device/ReadEClock() function to get an accurate elapsed time value. Since the context needs to be established the first call to this routine will return a nonsense value.
The return value for this function only allows for sixteen bits worth for the integer number of seconds and sixteen bits for the factional number of seconds.
With sixteen bits worth of integer seconds this function can be used to timer an interval up to about 16 hours. If the actual time interval is larger this function will return this maximum value.
The sixteen bits for fractional seconds gives a resolution of approximately 20 microseconds. However, it is not recomended to expect this function to be accurate for a time interval of less than 200 microseconds.
The first call to this function will return a non-sense value. Only rely on its result starting with the second call.