summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/latest/dos/memcpy.S
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/latest/dos/memcpy.S')
-rw-r--r--contrib/syslinux/latest/dos/memcpy.S23
1 files changed, 0 insertions, 23 deletions
diff --git a/contrib/syslinux/latest/dos/memcpy.S b/contrib/syslinux/latest/dos/memcpy.S
deleted file mode 100644
index 76eef73..0000000
--- a/contrib/syslinux/latest/dos/memcpy.S
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# memcpy.S
-#
-# Simple 16-bit memcpy() implementation
-#
-
- .text
- .code16gcc
- .globl memcpy
- .type memcpy, @function
-memcpy:
- cld
- pushw %di
- pushw %si
- movw %ax,%di
- movw %dx,%si
- # The third argument is already in cx
- rep ; movsb
- popw %si
- popw %di
- ret
-
- .size memcpy,.-memcpy