ExFAT: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
m Bot: Replace deprecated source tag with syntaxhighlight
m Bot: Replace deprecated source tag with syntaxhighlight
 
Line 252:
=== Filesystem Header ===
 
<sourcesyntaxhighlight lang="C">
struct bootsector {
char jump[3];
Line 271:
char bootsign[2];
};
</syntaxhighlight>
</source>
Block bitmap is cluster 2, upcase tbl is cluster 3.
 
 
=== Boot Checksum Calculation ===
<sourcesyntaxhighlight lang="C">
UInt32 BootChecksum (UCHAR * Sectors, USHORT BytesPerSector)
{
Line 298:
return Checksum;
}
</syntaxhighlight>
</source>