home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
asm
/
code32
/
strcat.rt
< prev
next >
Wrap
Text File
|
1993-01-09
|
614b
|
30 lines
public _strcat
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
; Add one ASCIIZ string to another
; In:
; ESI -> source string
; EDI -> destination string
; Out:
; None
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
_strcat:
push ax
push ecx
push esi
push edi
mov ecx,-1
xor al,al
repnz scasb
dec edi
strcatl:
lodsb
stosb
or al,al
jnz strcatl
pop edi
pop esi
pop ecx
pop ax
ret