SignBit constructor

SignBit(
  1. Logic inl, {
  2. bool inverted = false,
  3. String? name,
})

Construct a sign bit to store

Implementation

SignBit(Logic inl, {this.inverted = false, String? name})
    : super(name: name ?? inl.name, naming: Naming.mergeable) {
  this <= inl;
}