diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-09-29 20:20:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 20:20:47 -0400 |
commit | 7279de0b20fea0ba36a96e7d998ad37fac14365a (patch) | |
tree | 3f1a2c1f2b56dae093df43331e7fd6ec826d591e /asm/MSL_C/MSL_Common_Embedded/Math/w_fmod.s | |
parent | bb28572125c45ec20f5fbf85120cd71fb2486bac (diff) | |
parent | 5e80e11773a76a052341f0e7223fac548a746660 (diff) |
Merge pull request #107 from mparisi20/master
split MSL_C math library and reorganize source tree
Diffstat (limited to 'asm/MSL_C/MSL_Common_Embedded/Math/w_fmod.s')
-rw-r--r-- | asm/MSL_C/MSL_Common_Embedded/Math/w_fmod.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/asm/MSL_C/MSL_Common_Embedded/Math/w_fmod.s b/asm/MSL_C/MSL_Common_Embedded/Math/w_fmod.s new file mode 100644 index 0000000..abaa3fb --- /dev/null +++ b/asm/MSL_C/MSL_Common_Embedded/Math/w_fmod.s @@ -0,0 +1,7 @@ +.include "macros.inc"
+
+.section .text, "ax" # 0x80006980 - 0x803E1E60
+
+.global fmod
+fmod:
+/* 801D45E0 001D0240 4B FF CD E8 */ b __ieee754_fmod
|