Greetings,
Binary operations can be somewhat confusing at times, though quite simple to understand. It is customary to refer to a digit in binary (either 1 or 0) as a bit, likewise a byte is a set of eight bits. So, for example, 10100110 is a byte. A "nibble" is half of a byte, as it is a binary number with four bits.
A word is a sixteen-bit binary number. It is equivalent to two bytes, or four
nibbles. A double word is a 32-bit binary number, so a
dword is equivalent to two words, or four bytes, or eight nibbles. Most commonly, the number of bits (or bytes) in a number-type is referred to as that type's width.
Bit-type Examples:
Bit 1 bin
Nibble 0110 bin
Byte 00100101 bin
Word 1110100001010110 bin
D Word 10100110000111101110111011010101 bin
More information about Binary and its essentials can be found
here.
-
Stack
Overflow