mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 12:06:52 +00:00
[CRT]
Rename a number of .h files that contain assembly code into .inc to better reflect their purpose svn path=/branches/cmake-bringup/; revision=49566
This commit is contained in:
parent
6b0b6cb78f
commit
ab465e66e3
31 changed files with 20 additions and 20 deletions
45
lib/sdk/crt/string/i386/tcsncat.inc
Normal file
45
lib/sdk/crt/string/i386/tcsncat.inc
Normal file
|
@ -0,0 +1,45 @@
|
|||
/* $Id$
|
||||
*/
|
||||
|
||||
#include "tchar.h"
|
||||
#include <reactos/asm.h>
|
||||
|
||||
PUBLIC _tcsncat
|
||||
.code
|
||||
|
||||
_tcsncat:
|
||||
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
|
||||
|
||||
END
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue