ZChar constructor

ZChar(
  1. int _word
)

Implementation

ZChar(this._word) :// ((word >> 15) & 1) == 1,
      z3 = BinaryHelper.bottomBits(_word, 5),
      z2 = BinaryHelper.bottomBits(_word >> 5, 5),
      z1 = BinaryHelper.bottomBits(_word >> 10, 5) {
  // print('${word.toRadixString(2)}');
}