mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
46 lines
506 B
PHP
46 lines
506 B
PHP
|
|
#include "tchar.h"
|
|
#include <asm.inc>
|
|
|
|
PUBLIC _tcsncat
|
|
.code
|
|
|
|
FUNC _tcsncat
|
|
FPO 0, 3, 2, 2, 0, FRAME_FPO
|
|
push esi
|
|
push edi
|
|
mov edi, [esp + 12]
|
|
mov esi, [esp + 16]
|
|
cld
|
|
|
|
xor eax, eax
|
|
mov ecx, -1
|
|
repne _tscas
|
|
_tdec(edi)
|
|
|
|
mov ecx, [esp + 20]
|
|
|
|
.L1:
|
|
dec ecx
|
|
js .L2
|
|
_tlods
|
|
_tstos
|
|
test _treg(a), _treg(a)
|
|
jne .L1
|
|
jmp .L3
|
|
|
|
.L2:
|
|
xor eax, eax
|
|
_tstos
|
|
|
|
.L3:
|
|
mov eax, [esp + 12]
|
|
pop edi
|
|
pop esi
|
|
|
|
ret
|
|
ENDFUNC
|
|
|
|
END
|
|
/* EOF */
|