mirror of https://github.com/lianthony/NT4.0
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.
53 lines
846 B
53 lines
846 B
page ,132
|
|
title HUGE - HUGE value
|
|
;***
|
|
;huge.asm - defines HUGE
|
|
;
|
|
; Copyright (c) 1984-88, Microsoft Corporation
|
|
;
|
|
;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
|
|
;
|
|
;*******************************************************************************
|
|
|
|
|
|
.xlist
|
|
include i386\cruntime.inc
|
|
include i386\mrt386.inc
|
|
.list
|
|
|
|
|
|
.data
|
|
|
|
ifdef CRTDLL
|
|
globalQ _HUGE_dll, 7ff0000000000000R
|
|
else
|
|
globalQ _HUGE, 7ff0000000000000R
|
|
endif
|
|
|
|
|
|
end
|