Version 1 of byte

Updated 2005-06-09 13:48:29 by escargo

byte -

The amount of memory space used to store one character, which is usually 8 bits. A computer that has 8-bit bytes (most large and small computers today) can distinguish 256 different characters (quoted from the High-Tech Dictionary [L1 ]).

Further, the characters mentioned above are fixed-size characters, either extended ASCII (plain ASCII has only 128 characters, 7-bits worth), or EBCDIC. Unicode is not an 8-bit character set.


escargo - As a historical note, I have worked on machines with 6-bit bytes, 7-bit bytes, 8-bit bytes, and 9-bit bytes. When I worked for Cray Research, Inc., we had major headaches porting software that assumed the whole world was made from machines with 32-bit words, 8-bit bytes, and memories that are directly byte-addressable. I've worked on machines that had 36-bit words, 9-bit bytes, and were word addressed. People who assume that bytes and octets are the same might be comfortable in their assumptions, but they make life more difficult for other people.


Category Glossary