Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
1.0 KiB

page ,132
title 87csqrt - C interfaces - sqrt
;***
;87csqrt.asm - sqrt functions (8087/emulator version)
;
; Copyright (c) 1984-2001, Microsoft Corporation. All rights reserved.
;
;Purpose:
; C interfaces for the sqrt function (8087/emulator version)
;
;Revision History:
; 07-04-84 GFW initial version
; 05-08-87 BCM added C intrinsic interface (_CIsqrt)
; 10-12-87 BCM changes for OS/2 Support Library
; 11-24-87 BCM added _loadds under ifdef DLL
; 01-18-88 BCM eliminated IBMC20; ifos2,noos2 ==> ifmt,nomt
; 08-26-88 WAJ 386 version.
; 11-20-89 WAJ Don't need pascal for 386 MTHREAD.
;
;*******************************************************************************
.xlist
include cruntime.inc
.list
.data
extrn _OP_SQRTjmptab:word
page
CODESEG
extrn _ctrandisp1:near
public oldsqr
oldsqr proc
mov edx, OFFSET _OP_SQRTjmptab
jmp _ctrandisp1
oldsqr endp
extrn _cintrindisp1:near
public _old_CIsqrt
_old_CIsqrt proc
mov edx, OFFSET _OP_SQRTjmptab
jmp _cintrindisp1
_old_CIsqrt endp
end