kolibrios-fun/programs/other/graph/memset.asm

12 lines
181 B
NASM
Raw Normal View History

format MS COFF
section '.text' code readable executable
public _memset
_memset:
push edi
mov edi, [esp+8]
mov al, [esp+12]
mov ecx, [esp+16]
rep stosb
pop edi
ret