File:  [DVB] / dietlibc / i386 / memset.S
Revision 1.1: 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 memset
.type	 memset,@function
memset:
	pushl %edi
	movl 8(%esp),%edi
	movl 12(%esp),%eax
	movl 16(%esp),%ecx
	cld
	pushl %edi
	rep stosb
	popl %eax
	popl %edi
	ret

LinuxTV legacy CVS <linuxtv.org/cvs>