We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS

big endian: Difference between revisions

From SnesLab
Jump to: navigation, search
(Recovered from SMWiki, improvements are welcome.)
 
m (Vitor Vilela moved page Big endian to big endian)
(No difference)

Revision as of 00:08, 10 November 2019

Big endian refers to a storage of values beyond one byte. It's also known as MSB (most significant byte). It's a contrast to little endian which stores in the opposite fashion. In big endian, the order of the bytes which are stored are not changed.

Example

The 16-bit value $4782 would be stored as $47 $82, and the 24-bit value $426955 would be stored as $42 $69 $55. Notice how the byte order does not change. This is how big endian works.