Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. struct TwoNibbles
  2. {
  3. byte v1:4;
  4. byte v2:4;
  5. };
  6.  
  7. union Nibble
  8. {
  9. TwoNibbles nibble;
  10. byte Nibble[sizeof(TwoNibbles)];
  11. };
  12. Nibble wibble;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement