I am learning chisel3.
I want to run the code in order to see the result.
I command "sbt run" and show these errors.
It seems that I use ".W" to define width is illegal in Chisel,but the user guide obviously tells me that it's correct.
My build.sbt is created like this.
scalaVersion := "2.11.8"
resolvers ++= Seq( Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases") )libraryDependencies += "edu.berkeley.cs" %% "chisel3" % "3.0-SNAPSHOT"
What is the problem?
Thanks in advance.