diff options
Diffstat (limited to 'src/math/armhf/sqrt.s')
-rw-r--r-- | src/math/armhf/sqrt.s | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/armhf/sqrt.s b/src/math/armhf/sqrt.s new file mode 100644 index 00000000..99fe64b9 --- /dev/null +++ b/src/math/armhf/sqrt.s @@ -0,0 +1,6 @@ +.text +.global sqrt +.type sqrt,%function +sqrt: + vsqrt.f64 d0, d0 + bx lr |