2006-09-07 16:14:53 +02:00
|
|
|
format ELF
|
|
|
|
section '.text' executable
|
|
|
|
public memset
|
|
|
|
memset:
|
|
|
|
push edi
|
|
|
|
mov edi,[esp+8]
|
|
|
|
mov eax,[esp+12]
|
|
|
|
mov ecx,[esp+16]
|
|
|
|
jecxz .no_set
|
|
|
|
cld
|
|
|
|
rep stosb
|
|
|
|
.no_set:
|
2016-05-19 14:15:22 +02:00
|
|
|
mov eax, [esp+8]
|
2006-09-07 16:14:53 +02:00
|
|
|
pop edi
|
|
|
|
ret
|