< Annexe A - Compilation séparée en assembleur sous Unix | TutoOS | Annexe C - Bochs en mode debug >
Hexa | Décimal | Puissance de 2 | Commentaire |
---|---|---|---|
0xA | 10 | ||
0xB | 11 | ||
0xC | 12 | ||
0xD | 13 | ||
0xE | 14 | ||
0xF | 15 | ||
0x10 | 16 | 24 | |
0xFF | 255 | ||
0x100 | 256 | 28 | |
0x400 | 1024 | 210 | 1k |
0x800 | 2048 | 211 | 2k |
0x1000 | 4096 | 212 | 4k |
0x10.000 | 65.536 | 216 | 64k |
0x100.000 | 1.048.576 | 220 | 1Mo |
0x1000.000 | 16.777.216 | 224 | 16 Mo |
0x40.000.000 | 1.073.741.824 | 230 | 1G |
0x80.000.000 | 2.147.483.648 | 231 | 2G |
0xC0.000.000 | 3.221.225.472 | 3G | |
0x100.000.000 | 4.294.967.296 | 232 | 4G |
À retenir :
0x8
est la moitié de 0x10
0xn
* 0x10
= 0xn0
(par exemple 0xEF * 0x10 = 0xEF0)
< Annexe A - Compilation séparée en assembleur sous Unix | TutoOS | Annexe C - Bochs en mode debug >