home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
PPPBCKP
/
SRC
/
SRC15B89.ZIP
/
TERMIN.ZIP
/
SKIPBLK.ASM
< prev
next >
Wrap
Assembly Source File
|
1998-01-17
|
204b
|
13 lines
;put into the public domain by Russell Nelson, nelson@crynwr.com
public skip_blanks
skip_blanks:
lodsb ;skip blanks.
cmp al,' '
je skip_blanks
cmp al,HT
je skip_blanks
dec si
ret