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

  1. page ,132
  2. title HUGE - HUGE value
  3. ;***
  4. ;huge.asm - defines HUGE
  5. ;
  6. ; Copyright (c) 1984-2001, Microsoft Corporation. All rights reserved.
  7. ;
  8. ;Purpose:
  9. ; defines HUGE
  10. ;
  11. ;Revision History:
  12. ;
  13. ; 07/04/84 Greg Whitten
  14. ; initial version
  15. ;
  16. ; 12/21/84 Greg Whitten
  17. ; add assumes so that C can find variable
  18. ;
  19. ; 09/23/87 Barry C. McCord
  20. ; add _matherr_flag for the sake of the
  21. ; C floating-point intrinsic functions
  22. ;
  23. ; 08/29/88 Bill Johinston
  24. ; 386 version
  25. ;
  26. ; 08/27/91 JeffRob
  27. ; ANSI naming
  28. ;
  29. ; 09/06/91 GeorgioP
  30. ; define HUGE as positive infinity
  31. ;
  32. ; 09/06/91 GeorgioP
  33. ; define _HUGE_dll
  34. ;
  35. ; 04/05/93 SteveSa
  36. ; undefine _HUGE_dll
  37. ; 10/14/93 GregF
  38. ; Restored _HUGE_DLL for _NTSDK
  39. ;
  40. ;*******************************************************************************
  41. .xlist
  42. include cruntime.inc
  43. include mrt386.inc
  44. .list
  45. .data
  46. ifdef _NTSDK
  47. ifdef CRTDLL
  48. globalQ _HUGE_dll, 7ff0000000000000R
  49. else
  50. globalQ _HUGE, 7ff0000000000000R
  51. endif
  52. else
  53. globalQ _HUGE, 7ff0000000000000R
  54. endif
  55. end