kolibrios-fun/programs/other/graph/memset.asm
CleverMouse e2999eaedd add missing files for r1764
git-svn-id: svn://kolibrios.org@1765 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-25 13:14:35 +00:00

12 lines
181 B
NASM

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