Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
145 halyavin 1
format ELF
2
section '.text' executable
3
public memset
4
memset:
5
  push	edi
6
  mov	edi,[esp+8]
7
  mov	eax,[esp+12]
8
  mov	ecx,[esp+16]
9
  jecxz  .no_set
10
  cld
11
  rep	stosb
12
.no_set:
6433 siemargl 13
  mov eax, [esp+8]
145 halyavin 14
  pop	edi
15
  ret