Category : Assembly Language Source Code
Archive   : RHSTDLIB.ZIP
Filename : STRCPY.ASM

 
Output of file : STRCPY.ASM contained in archive : RHSTDLIB.ZIP
stdlib segment para public 'slcode'
assume cs:stdlib
;
;
; strcpy- Copies string pointed at by es:di to string pointed at by dx:si.
; (Sorry for the ackward use of registers, this matches the rest
; of the standard library though).
;
; inputs:
; es:di- Zero-terminated source string.
; dx:si- Buffer for destination string.
;
; outputs: es:di- Points at destination string.
;
; Note: The destination buffer must be large enough to hold the string and
; zero terminating byte.
;
public sl_strcpy
;
sl_strcpy proc far
push ds
push cx
push ax
pushf
push si
;
cld
mov al, 0
mov cx, 0ffffh
push di
repne scasb
pop di
neg cx
mov ax, es
mov ds, ax
mov es, dx
xchg si, di
dec cx
shr cx, 1
jnc CpyWrd
lodsb
stosb
CpyWrd: rep movsw
;
DidByte: pop si
popf
pop ax
pop cx
pop ds
mov es, dx
mov di, si
ret
sl_strcpy endp
;
;
stdlib ends
end


  3 Responses to “Category : Assembly Language Source Code
Archive   : RHSTDLIB.ZIP
Filename : STRCPY.ASM

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/