Advertisement
DynamixDJ

Bitmasks

May 9th, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Bitmasks
  2.  
  3. +---------------------------------+
  4. | BIT: | Hex: | Dec: | Binary: |
  5. |-------+------+------+-----------|
  6. | Bit 0 | 0x01 | 01 | 0000 0001 |
  7. | Bit 1 | 0x02 | 02 | 0000 0010 |
  8. | Bit 2 | 0x04 | 04 | 0000 0100 |
  9. | Bit 3 | 0x08 | 08 | 0000 1000 |
  10. | Bit 4 | 0x10 | 16 | 0001 0000 |
  11. | Bit 5 | 0x20 | 32 | 0010 0000 |
  12. | Bit 6 | 0x40 | 64 | 0100 0000 |
  13. | Bit 7 | 0x80 | 128 | 1000 0000 |
  14. +---------------------------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement