home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PJ_9_6.ZIP
/
ALIB.ZIP
/
STRLENZ.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1991-08-21
|
262 b
|
25 lines
include asm.inc
public strlenz
.code
;; strlenz
;
; entry DS:SI string
; exit CX byte count including NULL
; uses AX
;
strlenz proc
push si
movx cx,0
slz1: inc cx
lodsb
cmp al,NULL_CHAR
jne slz1
pop si
ret
strlenz endp
end