Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
#define USE_ESI
3
#define USE_EDI
4
#include 
5
#include 
6
#include
7
 
8
MK_C_SYM(__movedata)	/* src_sel, src_ofs, dest_sel, dest_ofs, len */
9
	ENTER
10
 
11
	pushw	%ds
12
	pushw	%es
13
 
14
	movw	ARG1,%ds
15
	movw	ARG3,%es
16
 
17
	movl	ARG2,%esi
18
	movl	ARG4,%edi
19
	movl	ARG5,%ecx
20
 
21
	call	C_SYM(__dj_movedata)
22
 
23
	popw	%es
24
	popw	%ds
25
 
26
	LEAVE
27