Created
April 24, 2024 07:36
-
-
Save HudsonSchumaker/617d80950081417389b72a5aaf4601cd to your computer and use it in GitHub Desktop.
Endianness
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- Endianness --- | |
| Little endian: | |
| higher memory | |
| -------------> | |
| +----+----+----+----+ | |
| |0x01|0x00|0x00|0x00| | |
| +----+----+----+----+ | |
| A | |
| | | |
| &x | |
| Big endian: | |
| +----+----+----+----+ | |
| |0x00|0x00|0x00|0x01| | |
| +----+----+----+----+ | |
| A | |
| | | |
| &x | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment