mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 22:32:58 +00:00

- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
27 lines
253 B
C
27 lines
253 B
C
/* $Id$
|
|
*/
|
|
|
|
#include "tchar.h"
|
|
|
|
.globl _tcscpy
|
|
|
|
_tcscpy:
|
|
push %esi
|
|
push %edi
|
|
mov 0x0C(%esp), %edi
|
|
mov 0x10(%esp), %esi
|
|
cld
|
|
|
|
.L1:
|
|
_tlods
|
|
_tstos
|
|
test %_treg(a), %_treg(a)
|
|
jnz .L1
|
|
|
|
mov 0x0C(%esp), %eax
|
|
|
|
pop %edi
|
|
pop %esi
|
|
ret
|
|
|
|
/* EOF */
|