mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-16 20:02:35 +03:00
15 lines
203 B
NASM
15 lines
203 B
NASM
|
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:
|
||
|
pop edi
|
||
|
ret
|
||
|
|