When integers are stored in memory they can be stored in different ways. The two main orders are:
Least significant byte on lowest adress: little endian (intel)
Most significant byte on lowest adress: big endian (680x0)
If you use one processor, you're pretty much forced to use the native format. But if you're not bound by such things, what's your preference? What format is the most "beautiful"?
(I have a strong opinion, but I know that there are others that have equaly strong opinion in the other way.)
Try to not lock yourself into thoughts like "I like processor X better than processor Y, so I'll take that endianness".
Least significant byte on lowest adress: little endian (intel)
Most significant byte on lowest adress: big endian (680x0)
If you use one processor, you're pretty much forced to use the native format. But if you're not bound by such things, what's your preference? What format is the most "beautiful"?
(I have a strong opinion, but I know that there are others that have equaly strong opinion in the other way.)
Try to not lock yourself into thoughts like "I like processor X better than processor Y, so I'll take that endianness".