SignBit constructor

SignBit(
  1. Logic inl, {
  2. bool inverted = false,
})

Construct a sign bit to store

Implementation

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