Hacker News new | ask | show | jobs
by coldacid 1767 days ago
From Wikipedia:

>A big-endian system stores the most significant byte of a word at the smallest memory address and the least significant byte at the largest. A little-endian system, in contrast, stores the least-significant byte at the smallest address.

So if you count the address "fields" from top to bottom in ascending order, putting the country first and street address last would be big-endian. If you put the street address first and the country last, that'd be little-endian.

Yeah it doesn't make that much sense to me either.