Comment on page
byte
Types to display single bytes using various different representations
Type visualizing the value of each individual bit
bitfield Bits { ... } [[format, right_to_left]];
Type representing a single Byte. Decodes the byte as it's hexadeicmal value, individual bits and nibbles
union Byte { ... } [[format, single_color]];
Type visualizing the value of the two nibbles
bitfield Nibbles { ... } [[format]];
Last modified 8mo ago