Chisel3. Functional Module Mux4
问题 I'm learning Chisel following the documentation on Github Thus far, everything worked flawlessly. But i'm stuck at chapter 13, "Functional Module Creation" I can't get the code to work . I created all my .scala classes in a copy of the chisel-template-project. Here is what i wrote / copied to create a Mux4 with variable bit width : /chisel-template/src/main/scala/ Mux4.scala import Chisel._ class Mux4(w: Int) extends Module { val io = IO(new Bundle { val sel = UInt(INPUT, 2) val in0 = UInt