6

我正在学习 Chisel3。

我对代码有一些疑问。

val myVec = Wire(Vec(5, SInt(width = 23)))  // Vector of 5 23-bit signed integers.

我想如果我声明一个向量并且我需要写“Wire”,但是当我看到这些代码时我错了。

class BigBundle extends Bundle {


 val myVec = Vec(5, SInt(width = 23))  // Vector of 5 23-bit signed integers.

 val flag  = Bool()
 // Previously defined bundle.

 val f     = new MyFloat

}

它突然打在我脸上,所以我想知道我什么时候使用“Wire”?

提前致谢。

4

2 回答 2

5

这里的关键是 Chisel3 中“类型”和“值”之间的区别。

VecBundleUIntSIntBool是“类型”的示例。

WireRegInputOutputMem是“值”的示例。

BigBundle上面:

class BigBundle extends Bundle {
  val myVec = Vec(5, SInt(23.W)) // Vector of 5 23-bit signed integers.
  val flag = Bool()
  val f = new MyFloat // Previously defined bundle.
}

BigBundle是一个“类型”,就像Vec(5, SInt(23.W))是一个“类型”。

如果您希望使用这些类型,您可以创建Wire其中一种类型,例如。

val myVecWire = Wire(Vec(5, SInt(23.W)))
val myBundleWire = Wire(new BigBundle)

编辑:更新为现代 chisel3 风格

于 2016-11-28T19:35:51.577 回答
4

You use Wire for any Chisel node that you might reassign the value of.

val a = Wire(Bool())
a := Bool(false)
...
于 2016-11-27T04:51:17.553 回答