Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. int MSB(int num){
  2. return (num & 0xff)>>7;
  3. }
  4.  
  5. int LSB(int num){
  6. return (num & 0xfe);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement