diff options
Diffstat (limited to 'src/math/aarch64/sqrt.s')
-rw-r--r-- | src/math/aarch64/sqrt.s | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/aarch64/sqrt.s b/src/math/aarch64/sqrt.s new file mode 100644 index 00000000..1917e18d --- /dev/null +++ b/src/math/aarch64/sqrt.s @@ -0,0 +1,6 @@ +.text +.global sqrt +.type sqrt,%function +sqrt: + fsqrt d0, d0 + ret |