Bit numbering

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

In computing, bit numbering (or sometimes bit endianness) is the convention used to identify the bit positions in a binary number or a container for such a value. The bit number starts with zero and is incremented by one for each subsequent bit position.

LSB 0 bit numbering

File:Lsb0.svg
LSB 0: A container for 8-bit binary number with the highlighted least significant bit assigned the bit number 0

When the bit numbering starts at zero for the least significant bit the numbering scheme is called "LSB 0".[1] This bit numbering method has the advantage that for any unsigned number the value of the number can be calculated by using exponentiation with the bit number and a base of 2. The value of an unsigned binary integer is therefore

 \sum_{i=0}^{N-1} b_i \cdot 2^i

where bi denotes the value of the bit with number i, and N denotes the number of bits in total.

MSB 0 bit numbering

File:Msb0.svg
MSB 0:A container for 8-bit binary number with the highlighted most significant bit assigned the bit number 0

Similarly, when the bit numbering starts at zero for the most significant bit the numbering scheme is called "MSB 0".

The value of an unsigned binary integer is therefore

 \sum_{i=0}^{N-1} b_i \cdot 2^{N-1-i}

Other

ALGOL 68's elem operator is effectively "MSB 1 bit numbering" as the bits are numbered from left to right, with the first bit (bits elem 1) being the "most significant bit", and the expression (bits elem bits width) giving the "least significant bit". Similarly, when bits are coerced (typecast) to an array of Boolean ([ ]bool bits), the first element of this array (bits[lwb bits]) is again the "most significant bit".

For MSB 1 numbering, the value of an unsigned binary integer is

 \sum_{i=1}^{N} b_i \cdot 2^{N-i}

PL/I numbers BIT strings starting with 1 for the leftmost bit.

The Fortran BTEST function uses LSB0 numbering.

Usage

Little-endian CPUs usually employ "LSB 0" bit numbering, however both bit numbering conventions can be seen in big-endian machines. Some architectures like SPARC and Motorola 68000 use "LSB 0" bit numbering, while S/390, PowerPC and PA-RISC use "MSB 0".[2]

The recommended style for Request for Comments documents is "MSB 0" bit numbering.[3][4]

Bit numbering is usually transparent to the software, but some programming languages like Ada allow specifying the appropriate bit order for data type representation.[5]

See also

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.

External links