Magellan Linux

Annotation of /tags/mkinitrd-6_3_1/isolinux/strcpy.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1133 - (hide annotations) (download)
Thu Aug 19 09:50:43 2010 UTC (13 years, 9 months ago) by niro
Original Path: trunk/mkinitrd-magellan/isolinux/strcpy.inc
File size: 224 byte(s)
-updated to isolinux-3.86
1 niro 532 ;
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