micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// an implementation of sqrt for Thumb using hardware double-precision VFP instructions
|
||||
|
||||
double sqrt(double x) {
|
||||
double ret;
|
||||
asm volatile (
|
||||
"vsqrt.f64 %P0, %P1\n"
|
||||
: "=w" (ret)
|
||||
: "w" (x));
|
||||
return ret;
|
||||
}
|
Reference in New Issue
Block a user