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.
 
 
 
 
 
 

60 lines
1014 B

page ,132
title HUGE - HUGE value
;***
;huge.asm - defines HUGE
;
; Copyright (c) 1984-2001, Microsoft Corporation. All rights reserved.
;
;Purpose:
; defines HUGE
;
;Revision History:
;
; 07/04/84 Greg Whitten
; initial version
;
; 12/21/84 Greg Whitten
; add assumes so that C can find variable
;
; 09/23/87 Barry C. McCord
; add _matherr_flag for the sake of the
; C floating-point intrinsic functions
;
; 08/29/88 Bill Johinston
; 386 version
;
; 08/27/91 JeffRob
; ANSI naming
;
; 09/06/91 GeorgioP
; define HUGE as positive infinity
;
; 09/06/91 GeorgioP
; define _HUGE_dll
;
; 04/05/93 SteveSa
; undefine _HUGE_dll
; 10/14/93 GregF
; Restored _HUGE_DLL for _NTSDK
;
;*******************************************************************************
.xlist
include cruntime.inc
include mrt386.inc
.list
.data
ifdef _NTSDK
ifdef CRTDLL
globalQ _HUGE_dll, 7ff0000000000000R
else
globalQ _HUGE, 7ff0000000000000R
endif
else
globalQ _HUGE, 7ff0000000000000R
endif
end