Bit hack fun!
Hide colors
Reverse bits
Little endian
uint
8
16
32
64
_t bit_hack(uint
8
16
32
64
_t x) {
return
x | (0xFF << 8)
;
}
Output: