File tree Expand file tree Collapse file tree 4 files changed +8
-16
lines changed
Expand file tree Collapse file tree 4 files changed +8
-16
lines changed Original file line number Diff line number Diff line change 1- ChangeLog for Chisel v2.2.36
1+ ChangeLog for Chisel v2.2.37
22
3- Print Chisel version when Driver object is created.
4- Generate 'buildinfo' when Chisel jar is built.
5- Update sbt project name from "chisel" to "Chisel" (to match package name).
6- Add support for chisel3 wrappers (IO(), Input(), Output()).
7- Warn about uninstantiable backends.
8- Add scalacheck as a library dependency.
9- Move ChiselSpec.scala from test to main (required for new tester support).
10- Add Chisel3 clock methods.
11- Deprecate Fill(Chisel.Data, Int) and generate error in compatibility mode.
3+ #740 Wide rom fix
4+ Remove Getting Started and refer to Chisel3.
5+ Update README.md (point to Chisel3, add Resolvers to getting started build.sbt
Original file line number Diff line number Diff line change 1- ReleaseNotes for Chisel v2.2.36
1+ ReleaseNotes for Chisel v2.2.37
22
3- This release of Chisel is largely a maintenance release, incorporating some Chisel3 features and additional compatibility checks.
4-
5- See the associated Changelog for issues resolved with this release.
3+ This release of Chisel is a maintenance release, incorporating a bug fix for issue #740 - unable to create a ROM with datawidth more than 64 bits.
64
75We will be removing support for Scala 2.10 in future Chisel
86releases. Please verify your code compiles and runs correctly under
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ def versionToArray(v: String): Array[String] = v.split('.')
22
33lazy val chiselBuildSettings = Seq (
44 organization := " edu.berkeley.cs" ,
5- // version := "2.2.37 ",
5+ // version := "2.2.38 ",
66 version := " 2.3-SNAPSHOT" ,
77 name := " Chisel" ,
88 scalaVersion := " 2.11.7" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class FillSuite extends TestSuite {
1313 val io = new Bundle {
1414 val a = UInt (INPUT , 4 )
1515 }
16- val f = Fill (UInt (1 ,1 ), 3 )
16+ val f = Fill (3 , UInt (1 ,1 ))
1717 }
1818
1919 val testArgs = chiselEnvironmentArguments() ++ Array (" --targetDir" , dir.getPath.toString(),
You can’t perform that action at this time.
0 commit comments