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:
Assembly Source File  |  1991-08-21  |  262 b   |  25 lines

  1.     include    asm.inc
  2.  
  3.     public    strlenz
  4.  
  5.     .code
  6.  
  7. ;;    strlenz
  8. ;
  9. ;    entry    DS:SI    string
  10. ;    exit    CX    byte count including NULL
  11. ;    uses    AX
  12. ;
  13. strlenz    proc
  14.     push    si
  15.     movx    cx,0
  16. slz1:    inc    cx
  17.     lodsb
  18.     cmp    al,NULL_CHAR
  19.     jne    slz1
  20.     pop    si
  21.     ret
  22. strlenz    endp
  23.  
  24.     end
  25.