Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1764 → Rev 1765

/programs/other/graph/memset.asm
0,0 → 1,11
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