cen64/os/windows/x86_64/fpu/fpu_cmp_eq_64.asm
2014-08-21 09:40:46 -07:00

19 lines
336 B
NASM

;
; os/windows/x86_64/fpu/fpu_cmp_eq_64.asm
;
; This file is subject to the terms and conditions defined in
; 'LICENSE', which is part of this source code package.
;
.code
fpu_cmp_eq_64 proc
movsd xmm0, QWORD PTR [rcx]
movsd xmm1, QWORD PTR [rdx]
comisd xmm1, xmm0
sete dl
setnp al
and al, dl
ret
fpu_cmp_eq_64 endp
end