home *** CD-ROM | disk | FTP | other *** search
- ; Name utmove -- move cnt bytes from the source to destination
- ; location.
- ;
- ; Synopsis iret = utmove(src_s,src_o,dst_s,dst_o,cnt);
- ; int iret; returned value is always 0.
- ; unsigned src_s; Segment address of source location
- ; unsigned src_o; Offset " " " "
- ; unsigned dst_s; Segment address of destination
- ; unsigned dst_o; Offset " " "
- ; unsigned cnt; Number of bytes to move from src to dst.
- ;
- ; Description This function moves cnt bytes from src to dst. The source
- ; and destination buffers should not overlap.
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1985
-
- name move
-
- include compiler.mac ; Specifies the C compiler
-
- if LAT200 or LAT210 or LAT300
- include dos.mac
-
- pseg
- public utmove
- if LPROG
- utmove proc far
- x equ 6 ; offset of arguments
- else
- utmove proc near
- x equ 4
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg utmove
- public _utmove
- if LPROG
- _utmove proc far
- x equ 6 ; offset of arguments
- else
- _utmove proc near
- x equ 4
- endif
- endif
-
- push bp ; Save the frame pointer
- mov bp,sp
- if MSC300
- push di ; Save register variables
- push si
- endif
- push ds ; Save DS and ES registers
- push es
-
- cld ; Clear the direction flag
- mov dx,[bp+x+4] ; Destination segment address
- mov es,dx
- mov di,[bp+x+6] ; Destination offset address
- mov cx,[bp+x+8] ; Number of bytes to move
- mov si,[bp+x+2] ; Source offset address
- mov dx,[bp+x] ; Source segment address
- mov ds,dx
- rep movsb ; Move the strings
-
- xor ax,ax ; Return value 0
-
- pop es ; Recover ES and DS
- pop ds
- if MSC300
- pop si ; Recover register variables
- pop di
- endif
- pop bp ; Recover the frame pointer
- ret
-
- if MSC300
- _utmove endp
- else
- utmove endp
- endif
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if MSC300
- endps utmove
- endif
-
- end