home *** CD-ROM | disk | FTP | other *** search
/ Graphics Programming Black Book (Special Edition) / BlackBook.bin / disk1 / source / chapter4 / lst4-3.asm < prev    next >
Assembly Source File  |  1997-06-18  |  201b  |  10 lines

  1. ; Listing 4.3. LST4-3.ASM
  2. ; Measures the performance of reading 1000 words
  3. ; from memory with 1000 word-sized accesses.
  4. ;
  5.     sub    si,si
  6.     mov    cx,1000
  7.     call    ZTimerOn
  8.     rep    lodsw
  9.     call    ZTimerOff
  10.