implicit class fromtLongToLiteral extends fromLongToLiteral
- Source
- compatibility.scala
- Alphabetic
- By Inheritance
- fromtLongToLiteral
- fromLongToLiteral
- fromBigIntToLiteral
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
B: chisel3.Bool
Int to Bool conversion, allowing compact syntax like 1.B and 0.B
Int to Bool conversion, allowing compact syntax like 1.B and 0.B
- Definition Classes
- fromBigIntToLiteral
-
def
S(width: Width): chisel3.SInt
Int to SInt conversion with specified width, recommended style for constants.
Int to SInt conversion with specified width, recommended style for constants.
- Definition Classes
- fromBigIntToLiteral
-
def
S: chisel3.SInt
Int to SInt conversion, recommended style for constants.
Int to SInt conversion, recommended style for constants.
- Definition Classes
- fromBigIntToLiteral
-
def
U(width: Width): chisel3.UInt
Int to UInt conversion with specified width, recommended style for constants.
Int to UInt conversion with specified width, recommended style for constants.
- Definition Classes
- fromBigIntToLiteral
-
def
U: chisel3.UInt
Int to UInt conversion, recommended style for constants.
Int to UInt conversion, recommended style for constants.
- Definition Classes
- fromBigIntToLiteral
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asSInt(width: Width): chisel3.SInt
Int to SInt conversion with specified width, recommended style for variables.
Int to SInt conversion with specified width, recommended style for variables.
- Definition Classes
- fromBigIntToLiteral
-
def
asSInt: chisel3.SInt
Int to SInt conversion, recommended style for variables.
Int to SInt conversion, recommended style for variables.
- Definition Classes
- fromBigIntToLiteral
-
def
asUInt(width: Width): chisel3.UInt
Int to UInt conversion with specified width, recommended style for variables.
Int to UInt conversion with specified width, recommended style for variables.
- Definition Classes
- fromBigIntToLiteral
-
def
asUInt: chisel3.UInt
Int to UInt conversion, recommended style for variables.
Int to UInt conversion, recommended style for variables.
- Definition Classes
- fromBigIntToLiteral
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
Deprecated Value Members
-
def
asSInt(dummy: Int*): chisel3.SInt
- Definition Classes
- fromBigIntToLiteral
- Annotations
- @deprecated
- Deprecated
(Since version Chisel 3.5) Calling this function with an empty argument list is invalid in Scala 3. Use the form without parentheses instead
-
def
asUInt(dummy: Int*): chisel3.UInt
- Definition Classes
- fromBigIntToLiteral
- Annotations
- @deprecated
- Deprecated
(Since version Chisel 3.5) Calling this function with an empty argument list is invalid in Scala 3. Use the form without parentheses instead
This is the documentation for Chisel.
Package structure
The chisel3 package presents the public API of Chisel. It contains the concrete core types
UInt
,SInt
,Bool
,FixedPoint
,Clock
, andReg
, the abstract typesBits
,Aggregate
, andData
, and the aggregate typesBundle
andVec
.The Chisel package is a compatibility layer that attempts to provide chisel2 compatibility in chisel3.
Utility objects and methods are found in the
util
package.The
testers
package defines the basic interface for chisel testers.