home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / CLIBS / STRING / 386 / STRLEN.ASM < prev    next >
Encoding:
Assembly Source File  |  1996-06-29  |  224 b   |  20 lines

  1.     .386
  2.     .model small
  3.     public _strlen
  4.     .code
  5. _strlen:
  6.     push    ebp
  7.     mov    ebp,esp
  8.     push    edi
  9.     mov    edi,[8+ebp]
  10.     sub    al,al
  11.     mov    ecx,-1
  12.     repne    scasb
  13.     neg    ecx
  14.     dec    ecx
  15.     dec    ecx
  16.     mov    eax,ecx
  17.     pop    edi
  18.     pop    ebp
  19.     ret
  20.     end