Skip to content
Snippets Groups Projects
Commit 3a01bb1b authored by baewoojin's avatar baewoojin
Browse files

Update README.md

parent a25fcd80
No related branches found
No related tags found
No related merge requests found
......@@ -196,3 +196,19 @@
((fixed32)(((fa>>8)*(fb>>8))>>16))
~~~
1. Same as above, the same fuction as fa*fb>>32, first multiply fa/2^8, fb/2^8, and divide the remaining 2^16
- a. div
- fx32_div
~~~
(fixed32)( (((fixed64)(fa) << FX32_QNUM) /(fb)))
~~~
1. fuction that multiplies fa by 2^32 and divides fb.
- fx32_div1
~~~
((((fa)<<16)/(fb))<<16)
~~~
1. Same as above, it has the same fuction as (fa<<32)/fb. First, fa is multiplied by 2^16 and divided by fb, and then the remaining 2^16 is multiplied
- fx32_div2
~~~
((((fa)<<24)/(fb))<<8)
~~~
1. same as above, it has the same fuction as (fa<<32)/fb. First, fa is multiplied by 2^24, divided by fb, and then the remaining 2^8 is multiplied.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment