Magellan Linux

Contents of /tags/mkinitrd-6_1_12/isolinux/strcpy.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 939 - (show annotations) (download)
Tue Nov 17 21:24:51 2009 UTC (14 years, 6 months ago) by niro
File size: 225 byte(s)
tagged 'mkinitrd-6_1_12'
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