repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
module: Append '/' to PATH strings if missing
[syslinux.git]
/
core
/
strcpy.inc
blob
9762cbbf1fd992a2c1aae20ba13848c62642b3bc
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 .text16
6
7
strcpy: push ax
8
.loop: lodsb
9
stosb
10
and al,al
11
jnz .loop
12
pop ax
13
ret