We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e63d4 commit 5274b6aCopy full SHA for 5274b6a
src/main/scala/soc/PipeCon.scala
@@ -17,3 +17,7 @@ class PipeCon(private val addrWidth: Int) extends Bundle {
17
val wrMask = Input(UInt(4.W))
18
val ack = Output(Bool())
19
}
20
+
21
+object PipeCon {
22
+ def apply(addrWidth: Int): PipeCon = new PipeCon(addrWidth)
23
+}
0 commit comments