summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/syslinux-4.03/core/strcpy.inc
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/syslinux-4.03/core/strcpy.inc')
-rw-r--r--contrib/syslinux/syslinux-4.03/core/strcpy.inc13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/syslinux/syslinux-4.03/core/strcpy.inc b/contrib/syslinux/syslinux-4.03/core/strcpy.inc
deleted file mode 100644
index 9762cbb..0000000
--- a/contrib/syslinux/syslinux-4.03/core/strcpy.inc
+++ /dev/null
@@ -1,13 +0,0 @@
-;
-; 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 .text16
-
-strcpy: push ax
-.loop: lodsb
- stosb
- and al,al
- jnz .loop
- pop ax
- ret