eax = 000000100011111 --> 00000100011111 --> 0000100011111 --> 000100011111 an so on.
If rax = 10000000011111 then the next 1-Bit goes to Left --> 0000000001101111 an so on.
This should done for all Bits set to 1.
The result an the End must be 1111110000000000.
What is the fastest way to do it?
I know i can get the first left Bit in rax with BSR rcx, rax
I hope i have explain it well
