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

  1. ;
  2. ; *** Listing 9-21 ***
  3. ;
  4. ; Times shifts performed by shifting CL times.
  5. ;
  6. BITS_TO_SHIFT    equ    1
  7.     call    ZTimerOn
  8.     rept    100
  9.     mov    cl,BITS_TO_SHIFT
  10.     shl    ax,cl
  11.     endm
  12.     call    ZTimerOff
  13.