home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / strcpy.inc < prev    next >
Encoding:
Text File  |  2004-12-17  |  225 b   |  15 lines

  1. ;
  2. ; strcpy: Copy DS:SI -> ES:DI up to and including a null byte;
  3. ;      on exit SI and DI point to the byte *after* the null byte
  4. ;
  5.         section .text
  6.  
  7. strcpy:        push ax
  8. .loop:        lodsb
  9.         stosb
  10.         and al,al
  11.         jnz .loop
  12.         pop ax
  13.         ret
  14.  
  15.