home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / NETWORK / DRIVERSS.ZIP / SKIPBLK.ASM < prev    next >
Encoding:
Assembly Source File  |  1990-01-12  |  212 b   |  13 lines

  1. ;put into the public domain by Russell Nelson, nelson@clutx.clarkson.edu
  2.  
  3.     public    skip_blanks
  4. skip_blanks:
  5.     lodsb                ;skip blanks.
  6.     cmp    al,' '
  7.     je    skip_blanks
  8.     cmp    al,HT
  9.     je    skip_blanks
  10.     dec    si
  11.     ret
  12.  
  13.