Function 5 - delay.
Delays execution of the program on the given time.
Parameters:
- eax = 5 - function number
- ebx = time in the 1/100 of second
Returned value:
- function does not return value
Remarks:
- Passing ebx=0 does not transfer control to the next process
and does not make any operations at all. If it is really required
to transfer control to the next process (to complete a current
time slice), use subfunction 1 of function 68.
- At current implementation there will be an immediate return from
the function, if the addition of ebx with current value of
time counter will call 32-bit overflow.