Skip to content

Instantly share code, notes, and snippets.

@pankkor
Created August 6, 2024 11:20
Show Gist options
  • Save pankkor/876865dbb9151e7772fd42d1eae5262d to your computer and use it in GitHub Desktop.
Save pankkor/876865dbb9151e7772fd42d1eae5262d to your computer and use it in GitHub Desktop.
FORCE_INLINE static f32 absf32(f32 v) {
f32 ret;
__asm__ volatile (
"fabs %s0, %s1\n"
: "=w" (ret)
: "w" (v)
);
return ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment