FATTable

The file block allocation table.

Record structure

FatItem[4096] FATItems

Field descriptions

FATItems

The FAT entries for the player's memory area. Note that these are 1-based. So a FAT index of "1" is FATItems[0].

Record declaration

C
typedef struct FATTABLETAG {
  FATITEM FATItems[4096];
} FATTABLE;

Pascal
TFATTable = packed array[0..4095] of TFATItem;