Skip to content
Snippets Groups Projects
Commit 2e6f493c authored by JieunYoon's avatar JieunYoon
Browse files

Fix longlong_DIV2

parent 24c62c31
No related branches found
No related tags found
No related merge requests found
...@@ -4,4 +4,4 @@ ...@@ -4,4 +4,4 @@
#define FX_S4716_LONGLONG_DIV(a, b) ((a << 16) / (b)) #define FX_S4716_LONGLONG_DIV(a, b) ((a << 16) / (b))
#define FX_S4716_LONGLONG_DIV1(a, b) (((a << 8) / (b)) << 8) #define FX_S4716_LONGLONG_DIV1(a, b) (((a << 8) / (b)) << 8)
#define FX_S4716_LONGLONG_DIV2(a, b) (((a << 4) / (b >> 4)) << 8) #define FX_S4716_LONGLONG_DIV2(a, b) (((a << 12) / (b)) << 4)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment