home *** CD-ROM | disk | FTP | other *** search
- ;
- ; *** Listing 9-9 ***
- ;
- ; Times the performance of two 16-bit register DEC
- ; instructions.
- ;
- mov dx,2000
- call ZTimerOn
- TestLoop:
- dec dx ;subtract 2 from DX by decrementing
- dec dx ; it twice (2 bytes long, uses
- ; 2 16-bit-register-specific DECs)
- jnz TestLoop
- call ZTimerOff