blob: 5e7e675739aa8d0fc3c26a520356e1277077b67d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
//++
//
// Copyright (c) 1993 IBM Corporation
//
// Module Name:
//
// huge.s
//
// Abstract:
//
// Define the largest power of two that can be represented by a PPC double
//
// Author:
//
// Mark D. Johnson
//
// Environment:
//
// User mode.
//
// Revision History:
//
//--
#ifdef CRTDLL
.globl _HUGE_dll
#else
.globl _HUGE
#endif
.align 3
.data
#ifdef CRTDLL
_HUGE_dll:
#else
_HUGE:
#endif
.word 0x00000000,0x7ff00000
|