9.2 Data Representation
The compiler stores multibyte values in little-endian format. That is, the Least Significant Byte is stored at the lowest address.
For example, the 32-bit value 0x12345678
would be stored at address
0x100
as:
Address | 0x100 |
0x101 |
0x102 |
0x103 |
Data | 0x78 |
0x56 |
0x34 |
0x12 |