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

  1. ;
  2. ; *** Listing 4-9 ***
  3. ;
  4. ; Measures the performance of repeated MUL instructions,
  5. ; which allow the prefetch queue to be full at all times,
  6. ; to demonstrate a case in which DRAM refresh has no impact
  7. ; on code performance.
  8. ;
  9.     sub    ax,ax
  10.     call    ZTimerOn
  11.     rept    1000
  12.     mul    ax
  13.     endm
  14.     call    ZTimerOff
  15.