Penguin

Differences between version 6 and predecessor to the previous major change of LittleEndian.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 6 Last edited on Saturday, March 19, 2005 11:23:29 am by AristotlePagaltzis Revert
Older page: version 5 Last edited on Sunday, February 8, 2004 6:13:09 pm by CraigBox Revert
@@ -1,10 +1,3 @@
-''One little, two little, three [LittleEndian]s, four little, five little, six [LittleEndian]s ...''  
+Opposite of BigEndian
  
-Little [Endian] is when you store/send the number "0x01020304" as "04 03 02 01". This was used by smaller machines since they tended to be only 8 bit, and they could load the first byte, increment it, and then if it "overflowed" they could fetch the next byte and increment it, making adding nice and easy. Larger machines didn't care as much, they weren't 8 bit :)  
-  
-Intel machines were traditionally "Little" machines, and so they use LittleEndian, perhaps the only major computer system left in the world that does. Everyone else is BigEndian. This tends to cause problems when you use networks, since networks use NetworkByteOrder which is usually BigEndian.  
-  
- See BigEndian for the explanation of the naming.  
-  
-''"There are 10 kinds of people in the world; those who know binary and those who don't" - Seen on the net. %%%''  
-''"There are 01 kinds of people who know binary; [LittleEndian]s and [everyone else|BigEndian ].." - zcat(1)''  
+See [Endianness