Recent content by mmox123

  1. M

    How to Implement a Constant Time Delay in x86 Assembly?

    Typical Pentium software delay loops can be written using MOV and LOOP instructions. For example, the following instruction sequence can be used for a delay loop: MOV CX,count DELAY: LOOP DELAY The initial loop counter value of “count” can be calculated using the cycles required to execute...
Back
Top