Table of Contents
0x11223344
- Big Endian 高字节放低地址
Offset 0x00 0x01 0x02 0x03 data 0x11 0x22 0x33 0x44 - PowerPC/8051/
- Network/
- Little Endian 低字节放低地址
Offset 0x00 0x01 0x02 0x03 data 0x44 0x33 0x22 0x11 - x86/ARM/
- USB/PCI/
Knowledge derives from accumulation.
0x11223344
| Offset | 0x00 | 0x01 | 0x02 | 0x03 |
| data | 0x11 | 0x22 | 0x33 | 0x44 |
| Offset | 0x00 | 0x01 | 0x02 | 0x03 |
| data | 0x44 | 0x33 | 0x22 | 0x11 |