− | To convert the bit number to the offset and bit: <code>offset = start_offset + (bit_num / 32) * 4</code>, <code>bit = 1 << (bit_num % 32)</code> | + | To convert the bit number to the offset and bit: <code>offset = 0x40 + (bit_num / 32) * 4</code>, <code>bit = 1 << (bit_num % 32)</code> |