Advertisement
Guest User

Untitled

a guest
Jun 1st, 2015
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. pin in u32 length;
  2.  
  3. u32 temp0, temp1;
  4.  
  5.  
  6. temp0 = length;
  7. temp0 >> 8;
  8. temp1 = length;
  9. temp1 << 8;
  10. rtapi_print_msg(RTAPI_MSG_ERR,"shift: %d >> %d << %d\n",length, temp0, temp1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement