This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RescueBootCD/extra/syslinux-3.09/strcpy.inc

15 lines
225 B
PHP

;
; strcpy: Copy DS:SI -> ES:DI up to and including a null byte;
; on exit SI and DI point to the byte *after* the null byte
;
section .text
strcpy: push ax
.loop: lodsb
stosb
and al,al
jnz .loop
pop ax
ret