Support LOCALBOOT (ISOLINUX-style) in SYSLINUX/EXTLINUX
[syslinux.git] / strcpy.inc
blob2bafa7feb61066c14227c6edad607c03e82fac78
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
5                 section .text
7 strcpy:         push ax
8 .loop:          lodsb
9                 stosb
10                 and al,al
11                 jnz .loop
12                 pop ax
13                 ret