It would not make sense to reorder the bits, and it would be rather confusing to load. Processors do not read bits with characters, they simultaneously read bytes or byte combinations, so it is important that this ordering.
When they store a number consisting of several bytes, they can either store it from left to right, making the high byte the smallest in memory, or right to left, with the low byte of the low byte in memory.
source share