There are two standard ways to store data larger than 8 bits: either to store it so the most significant bytes come first, or so they come last:

Value$1234
Big-endian storage12 34
Little-endian storage34 12

Both methods have advantages and disadvantages.

The Z80 is a little-endian CPU. That means that:




Return to top
0.077s