home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Extra Super CD 1998 January
/
PCPLUS131.iso
/
DJGPP
/
V2
/
DJLSR201.ZIP
/
src
/
libc
/
ansi
/
string
/
memcpy.s
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-03-11
|
330 b
|
21 lines
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
.file "memcpy.s"
.text
.align 4
.globl _memcpy
_memcpy:
pushl %ebp
movl %esp,%ebp
pushl %esi
pushl %edi
movl 8(%ebp),%edi
movl 12(%ebp),%esi
movl 16(%ebp),%ecx
call ___dj_movedata
popl %edi
popl %esi
movl 8(%ebp),%eax
leave
ret