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.
28 lines
472 B
28 lines
472 B
//
|
|
// Define the maximum floating point value (+Infinity).
|
|
//
|
|
|
|
.data
|
|
.align 3
|
|
|
|
#ifdef CRTDLL
|
|
.globl _HUGE_dll
|
|
_HUGE_dll:
|
|
#else
|
|
.globl _HUGE
|
|
_HUGE:
|
|
#endif
|
|
|
|
//
|
|
// N.B. 0x7feff...ff is the maximum finite floating point value and
|
|
// 0x7ff00...00 is IEEE Plus Infinity.
|
|
//
|
|
|
|
.quad 0x7ff0000000000000
|
|
|
|
//
|
|
// The following are alternate representations of HUGE.
|
|
//
|
|
// .double 0x1.0h0x7ff
|
|
// #define HUGE 1.7976931348623158e+308
|
|
//
|