Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1.  
  2. int b3 = (int) byteAtAddrPlus3.value();
  3. int b2 = (int) byteAtAddrPlus2.value();
  4. int b1 = (int) byteAtAddrPlus1.value();
  5. int b0 = (int) byteAtAddrPlus0.value();
  6.  
  7. b3 = b3<<3*8;
  8. b2 = b2<<2*8;
  9. b1 = b1<<1*8;
  10.  
  11. int b = b3 | b2 | b1 | b0;
  12.  
  13.  
  14.  
  15. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement