Skip to content

Commit

Permalink
dsptools dependencies versions updated, but had to revert direction c…
Browse files Browse the repository at this point in the history
…heck since DataMirror doesn't exist
  • Loading branch information
shunshou committed Oct 18, 2017
1 parent a9dff60 commit 0d9b7e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-language:refle

// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"chisel3" -> "3.0-SNAPSHOT",
"chisel-iotesters" -> "1.1-SNAPSHOT"
"chisel3" -> "3.1-SNAPSHOT",
"chisel-iotesters" -> "1.2-SNAPSHOT"
)

libraryDependencies ++= Seq(
Expand Down
3 changes: 2 additions & 1 deletion src/main/scala/dsptools/tester/VerilogTbDump.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ trait VerilogTbDump {

val (inputs, outputs) = TestersCompatibility.getDataNames("io", dut.io) partition {
case (dat, name) =>
DataMirror.directionOf(dat) == chisel3.core.ActualDirection.Input
dat.dir == core.Direction.Input
//DataMirror.directionOf(dat) == chisel3.core.ActualDirection.Input
}

if (verilogTb) initVerilogTbFile()
Expand Down

0 comments on commit 0d9b7e1

Please sign in to comment.