History
The term ''nibble'' originates from its representing half a byte, with ''byte'' a homophone of the English word ''bite''. In 2014, David B. Benson, a professor emeritus at Washington State University, remembered that he playfully used (and may have possibly coined) the term ''nibble'' as half a byte and unit of storage required to hold a binary-coded decimal (BCD) digit around 1958, when talking to a programmer from Los Alamos Scientific Laboratory. The alternative spelling ''nybble'' reflects the spelling of ''byte'', as noted in editorials of '' Kilobaud'' and '' Byte'' in the early 1980s. Another early recorded use of the term ''nybble'' was in 1977 within the consumer-banking technology group at Citibank. It created a pre- ISO 8583 standard for transactional messages between cash machines and Citibank's data centers that used the basic data unit ''nabble''. ''Nibble'' is used to describe the amount of memory used to store a digit of a number stored in packed decimal format (BCD) within an IBM mainframe. This technique is used to make computations faster and debugging easier. An 8-bit byte is split in half and each nibble is used to store one decimal digit. The last (rightmost) nibble of the variable is reserved for the sign. Thus a variable which can store up to nine digits would be "packed" into 5 bytes. Ease of debugging resulted from the numbers' being readable in a hex dump where two hex numbers are used to represent the value of a byte, as . For example, a five-byte BCD value of represents a decimal value of +314159265. Historically, there are cases where ''nybble'' was used for a group of bits greater than 4. On the Apple II, much of the disk drive control and group-coded recording was implemented in software. Writing data to a disk was done by converting 256-byte pages into sets of 5-bit (later, 6-bit) nibbles and loading disk data required the reverse. Moreover, 1982 documentation for the Integrated Woz Machine refers consistently to an "8 bit nibble". The term ''byte'' once had the same ambiguity and meant a set of bits but not necessarily 8, hence the distinction of ''bytes'' and '' octets'' or of ''nibbles'' and ''quartets'' (or ''quadbits''). Today, the terms ''byte'' and ''nibble'' almost always refer to 8-bit and 4-bit collections, respectively and are very rarely used to express any other sizes.Value representation
A nibble-sized value can be represented in different numeric bases:Low and high nibbles
The low and high nibbles of a byte are its two halves, which are the least and the most significant bits within the byte, respectively. In a graphical representation of bits within a byte, the leftmost bit could represent the most significant bit ( MSB), corresponding to ordinary decimal notation in which the digit at the left of a number is the most significant. In such an illustration, the four bits on the left end of the byte form the high nibble, and the remaining four bits form the low nibble. For example, : the high nibble is (), and the low nibble is (). The total value is ().See also
* * *References
External links
* {{Computer Storage Volumes Computing terminology Data unit Units of information Articles with example C code Articles with example Lisp (programming language) code