Skip to content

Instantly share code, notes, and snippets.

@HudsonSchumaker
Created April 24, 2024 07:36
Show Gist options
  • Select an option

  • Save HudsonSchumaker/617d80950081417389b72a5aaf4601cd to your computer and use it in GitHub Desktop.

Select an option

Save HudsonSchumaker/617d80950081417389b72a5aaf4601cd to your computer and use it in GitHub Desktop.
Endianness
--- 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