microZEUS
The whole stack, hand-drawn.

◄ Wiki / OS

big-endian

A byte ordering that stores a number's most significant byte first.

Endianness is the order in which a multi-byte number's bytes are laid out in memory; big-endian puts the biggest-value byte first, the reverse of little-endian used by most PCs. Formats like network protocols and Device Tree Blobs (DTBs) are big-endian, so a parser must convert bytes correctly or read garbage. 'Proper big-endian handling' means honoring that order when reading such data.

See also

  • ARPThe protocol that finds a device's hardware address from its IP address on a local network.
  • BIOSThe low-level firmware that starts a machine and hands control to the operating system.

Referenced by

ARP · BIOS