home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_11 / 2n11056d < prev    next >
Text File  |  1991-09-29  |  364b  |  10 lines

  1.  
  2.           repeat:
  3.             lodsw           1 byte    16 ticks
  4.             test   ah,al    2 bytes    3  ticks
  5.             jz     quit     2 bytes   16 ticks if jump, 4 if not
  6.             lodsw           1 byte    16 ticks
  7.             test   ah,al    2 bytes    3  ticks
  8.             jnz    repeat   2 bytes   16 ticks if jump, 4 if not
  9.           quit:
  10.