Posted By:
vikrantJ_sharma
Posted On:
Tuesday, December 31, 2002 11:24 PM
by using sotware delays avilable in high level language we can program delays in milliseconds only as
Thread.sleep(100);// in java
or
sleep(1000);//in c or c++
but to get delay lesser than
this we use assembly level routines
say,microsecond delay in a assembly language
of x86 architecture how to do that.Please tell me.