diff options
Diffstat (limited to 'arm9/asm/MSL_Common_float.s')
-rw-r--r-- | arm9/asm/MSL_Common_float.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arm9/asm/MSL_Common_float.s b/arm9/asm/MSL_Common_float.s new file mode 100644 index 00000000..d412ffb6 --- /dev/null +++ b/arm9/asm/MSL_Common_float.s @@ -0,0 +1,18 @@ + .include "asm/macros.inc"
+ .include "global.inc"
+
+ .data
+ .global __float_huge
+__float_huge: ; 0x02106B74
+ .word 0x7F800000 ; inf
+ .size __float_huge,.-__float_huge
+
+ .global __float_nan
+__float_nan: ; 0x02106B78
+ .word 0x7FFFFFFF ; nan
+ .size __float_nan,.-__float_nan
+
+ .global __double_huge
+__double_huge: ; 0x02106B7C
+ .word 0x00000000, 0x7FF00000 ; inf
+ .size __double_huge,.-__double_huge
|