home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / zenlib / lst4_5.asm < prev    next >
Assembly Source File  |  1990-02-15  |  328b  |  15 lines

  1. ;
  2. ; *** Listing 4-5 ***
  3. ;
  4. ; Measures the performance of 1000 SHR instructions
  5. ; in a row. Since SHR executes in 2 cycles but is
  6. ; 2 bytes long, the prefetch queue is always empty,
  7. ; and prefetching time determines the overall
  8. ; performance of the code.
  9. ;
  10.     call    ZTimerOn
  11.     rept    1000
  12.     shr    ax,1
  13.     endm
  14.     call    ZTimerOff
  15.