File:  [DVB] / dietlibc / i386 / memcpy.S
Revision 1.2: download - view: text, annotated - select for diffs
Thu Aug 23 14:11:42 2001 UTC (22 years, 9 months ago) by fefe
Branches: MAIN
CVS tags: finnland_test_200301, branch_rc14_fieldtest_finnland, branch_rc13_fieldtest_finnland, branch_rc12_fieldtest_finnland, branch_rc10_fieldtest_finnland, RELEASE_finnland_200301_1, RC12_FIELDTEST_FINNLAND, RC10_FIELDTEST_FINNLAND, HEAD
The memcpy the guy sent me copied the wrong way

.text
.align 0 
.global memcpy
.type	 memcpy,@function
memcpy:
	pushl %esi
	pushl %edi
	movl 12(%esp),%edi
	movl 16(%esp),%esi
	movl 20(%esp),%ecx
	movl %edi, %eax
	cld
	rep movsb
	popl %edi
	popl %esi
	ret

LinuxTV legacy CVS <linuxtv.org/cvs>