From 0d9b7e1626c2c85a294d8069bdb2dd194928cbb2 Mon Sep 17 00:00:00 2001 From: Angie Date: Wed, 18 Oct 2017 16:02:56 -0700 Subject: [PATCH] dsptools dependencies versions updated, but had to revert direction check since DataMirror doesn't exist --- build.sbt | 4 ++-- src/main/scala/dsptools/tester/VerilogTbDump.scala | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index b1c39b94..37afa823 100644 --- a/build.sbt +++ b/build.sbt @@ -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( diff --git a/src/main/scala/dsptools/tester/VerilogTbDump.scala b/src/main/scala/dsptools/tester/VerilogTbDump.scala index fc2019a8..1cc0038f 100644 --- a/src/main/scala/dsptools/tester/VerilogTbDump.scala +++ b/src/main/scala/dsptools/tester/VerilogTbDump.scala @@ -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()