home *** CD-ROM | disk | FTP | other *** search
/ Graphics Programming Black Book (Special Edition) / BlackBook.bin / disk1 / zenasmlg / zen_list.exe / LST9-10.ASM < prev    next >
Assembly Source File  |  1990-02-15  |  242b  |  14 lines

  1. ;
  2. ; *** Listing 9-10 ***
  3. ;
  4. ; Times the performance of an 8-bit register DEC.
  5. ;
  6.     mov    dl,100
  7.     call    ZTimerOn
  8. TestLoop:
  9.     dec    dl    ;8-bit register DEC
  10.             ; (2 bytes long, uses mod-reg-rm
  11.             ; form of DEC)
  12.     jnz    TestLoop
  13.     call    ZTimerOff
  14.