Go to the documentation of this file.
57 #define HIDDEN_AREA 0x01
58 #define REVERSE_POLARITY 0x02
59 #define DOUBLE_BAI 0x04
63 #define BLOCK_FREE(b) ((b) == 0xffffffff)
64 #define BLOCK_DELETED(b) (((b) == 0) || ((b) == 0xfffffffe))
66 #define BLOCK_TYPE(b) ((b) & 0x7f)
67 #define BLOCK_ADDRESS(b) ((b) & ~0x7f)
68 #define BLOCK_NUMBER(b) ((b) >> 9)
69 #define BLOCK_CONTROL 0x30
70 #define BLOCK_DATA 0x40
71 #define BLOCK_REPLACEMENT 0x60
72 #define BLOCK_BAD 0x70