Used to know the data type of the children class of BitVector
Logical AND operator
Assign a range value to a SInt
Assign a range value to a SInt
The first range value
Others range values
core.io.interrupt = (0 -> uartCtrl.io.interrupt, 1 -> timerCtrl.io.interrupt, default -> false)
Logical shift Left (output width will increase of w(this) + max(that) bits
BitVector is not equal to MaskedLiteral
BitVector is not equal to MaskedLiteral
Compare a BitVector data with a MaskedLiteral (M"110--0")
Compare a BitVector data with a MaskedLiteral (M"110--0")
the maskedLiteral
a Bool data containing the result of the comparison
val myBool = myBits === M"0-1"
Logical shift Right (output width == input width)
Logical shift Right (output width == input width)
the number of shift
a Bits of width : w(this)
val result = mySInt >> myUIntShift
Concatenation between a SInt and a Bool
Concatenation between a SInt and UInt
Concatenation between two SInt
Concatenation between two SInt
an SInt to append
a new SInt of width (width(this) + width(right))
val mySInt = sint1 @@ sint2
Logical XOR operator
Return the absolute value of the SInt when enable is True
Absolute value of a SInt
Absolute value of a SInt
a UInt assign with the absolute value of the SInt
Logical AND of all bits
Logical AND of all bits
Return a range of bits at offset and of width bitCount
Return a range of bits at offset and of width bitCount
Return the bit at index bitId
Return the bit at index bitId
Return a range of bits
Return a range of bits
Return a range of bits form hi index to lo index
Return a range of bits form hi index to lo index
Transform the BitVector into a Vector of Bool
Convert an SInt into an UInt
Convert an SInt into an UInt
a UInt data
Clear all bits
Clear all bits
Return the upper bound
Return the upper bound
Return the least significant bit
Return the least significant bit
Return the most significant bit
Return the most significant bit
Extract a bit of the BitVector
Logical OR of all bits
Logical OR of all bits
Return the range
Return the range
Resize the bitVector to width
Left rotation of that bits
Left rotation of that Bits
Left rotation of that Bits
Right rotation of that bits
Right rotation of that Bits
Right rotation of that Bits
Set all bits
Set all bits
Set all bits to value
Set all bits to value
Set all bits to value
Set all bits to value
Set the width of the BitVector
Set the width of the BitVector
the width of the data
the BitVector of a given size
Split the BitVector into slice of x bits * @example
Split the BitVector into slice of x bits * @example
val res = myBits.subdiviedIn(3 bits)
the width of the slice
a Vector of slices
Split the BitVector into slice of x bits
Split the BitVector into slice of x bits
the width of the slice
a Vector of slices
val res = myBits.subdiviedIn(3 slices)
Negative number
Negative number
return a negative number
Inverse operator
Logical XOR of all bits
Logical XOR of all bits
Logical OR operator
Logical shift left (output width = input width)
Logical shift left (output width = input width)
Logical shift Right (output width = input width)
Logical shift right (output width = input width)
Logical shift right (output width = input width)
the number of shift
a Bits of width : w(this)
val result = myUInt |>> 4
Use =/= instead
use allowPruning instead
The SInt type corresponds to a vector of bits that can be used for signed integer arithmetic.
"SInt Documentation"