Reads an 8-bit unsigned integer value from a list.
int readUint8(List<int> array, [int offset = 0]) { return array[offset] & mask8; }