We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi all,
I need help for to convert logic in following way:
if 1st bit set in (00000000000000000000000000001) i can get 1
f 1st bit set in (00000000000000000000000000100) i can get 2
f 1st bit set in (00000000000000000100000000000) i can get 11
...........................................................................................................
f 1st bit set in (10000000000000000000000000001) i can get 31
is there any instruction for ARM cortex-r4. i found BSF but i do not think it support .
" I mean to say i just want to get the set bit position number in uint32 data ".
Please help me .