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

  1. ;
  2. ; *** Listing 4-1 ***
  3. ;
  4. ; Measures the performance of a loop which uses a
  5. ; byte-sized memory variable as the loop counter.
  6. ;
  7.     jmp    Skip
  8. ;
  9. Counter    db    100
  10. ;
  11. Skip:
  12.     call    ZTimerOn
  13. LoopTop:
  14.     dec    [Counter]
  15.     jnz    LoopTop
  16.     call    ZTimerOff
  17.