Guest User

Untitled

a guest
Dec 11th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. uint16 ExtraiBits(int i, int j, uint16 word) {
  2. int mascara;
  3.  
  4. word = word >> j;
  5. mascara = (1 << (i - j + 1)) - 1;
  6. word = word & mascara;
  7.  
  8. return word;
  9. }
Add Comment
Please, Sign In to add comment