Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 647 Rev 6410
Line 4... Line 4...
4
include 'proc32.inc'
4
include 'proc32.inc'
Line 5... Line 5...
5
 
5
 
6
public memcpy
6
public memcpy
Line 7... Line 7...
7
public memmove
7
public memmove
Line 8... Line 8...
8
 
8
 
9
proc memcpy stdcall, to:dword,from:dword,count:dword
9
proc memcpy c, to:dword,from:dword,count:dword
10
 
10
 
Line 18... Line 18...
18
	no_copy_block:
18
	no_copy_block:
Line 19... Line 19...
19
 
19
 
20
	ret
20
	ret
Line 21... Line 21...
21
endp
21
endp
Line 22... Line 22...
22
 
22
 
23
proc memmove stdcall, to:dword,from:dword,count:dword
23
proc memmove c, to:dword,from:dword,count:dword
24
 
24