mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
37 lines
403 B
PHP
37 lines
403 B
PHP
|
|
#include "tchar.h"
|
|
#include <asm.inc>
|
|
|
|
PUBLIC _tcscmp
|
|
.code
|
|
|
|
FUNC _tcscmp
|
|
FPO 0, 2, 2, 2, 0, FRAME_FPO
|
|
push esi
|
|
push edi
|
|
mov esi, [esp + 12]
|
|
mov edi, [esp + 16]
|
|
xor eax, eax
|
|
cld
|
|
|
|
.L1:
|
|
_tlods
|
|
_tscas
|
|
jne .L2
|
|
test eax, eax
|
|
jne .L1
|
|
xor eax, eax
|
|
jmp .L3
|
|
|
|
.L2:
|
|
sbb eax, eax
|
|
or al, 1
|
|
|
|
.L3:
|
|
pop edi
|
|
pop esi
|
|
ret
|
|
ENDFUNC
|
|
|
|
END
|
|
/* EOF */
|