Endian-ness in FAT32
Last updated
Was this helpful?
Last updated
Was this helpful?
Endian-ness is about byte ordering. We have two types: big endian and little endian.
Suppose we see the following, which represents the bytes per sector.
We have two ways to interpret this number, either 0x00 02 or 0x02 00
0x0002 = 2 bytes
0x0200 = 512 bytes
As in FAT32, little Endian is used. Therefore, the number of bytes per sector is 512 bytes.