diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-06-01 08:54:54 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-06-01 08:54:54 -0400 |
commit | ba0d2b10f0a4c5697aaa3a0a1da6c153c43f4ca1 (patch) | |
tree | ec4075173b297556bc652b13e5012b6dcc39faf5 /arm9/asm/MSL_float.s | |
parent | ae69fdeaea7f789815f8560044d0758d11837d70 (diff) |
Split libc.s, 2
Diffstat (limited to 'arm9/asm/MSL_float.s')
-rw-r--r-- | arm9/asm/MSL_float.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arm9/asm/MSL_float.s b/arm9/asm/MSL_float.s new file mode 100644 index 00000000..d412ffb6 --- /dev/null +++ b/arm9/asm/MSL_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
|