Endianness
Jump to navigation
Jump to search
- This article is currently a stub; it means I'm aware it's short and I probably intend to expand on the subject in the future!
| Big Endian (BE) | Little Endian (LE) | |
|---|---|---|
| byte order | MSB first | LSB first |
| example (0x12345678) | 0x12 0x34 0x56 0x78 | 0x78 0x56 0x34 0x12 |
| architectures | N64 MIPS | x86, z80, GBA ARM [1] |