From 8f96e509215e092799cddd992dc2e42bedd4e2ad Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Thu, 19 Jul 2018 10:23:03 -0700 Subject: Add support for Input() and Output() (available in Chisel2 since ucb-bar/chisel2-deprecated#734) and test for same. --- src/test/scala/chiselTests/CompatibilitySpec.scala | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/test/scala/chiselTests') diff --git a/src/test/scala/chiselTests/CompatibilitySpec.scala b/src/test/scala/chiselTests/CompatibilitySpec.scala index eb38cab1..339f2af1 100644 --- a/src/test/scala/chiselTests/CompatibilitySpec.scala +++ b/src/test/scala/chiselTests/CompatibilitySpec.scala @@ -322,4 +322,18 @@ class CompatibiltySpec extends ChiselFlatSpec with GeneratorDrivenPropertyChecks }) } + "Chisel3 IO constructs" should "be useable in Chisel2" in { + import Chisel._ + elaborate(new Module { + val io = IO(new Bundle { + val in = Input(Bool()) + val foo = Output(Bool()) + val bar = Flipped(Bool()) + }) + Chisel.assert(io.in.dir == INPUT) + Chisel.assert(io.foo.dir == OUTPUT) + Chisel.assert(io.bar.dir == INPUT) + }) + } + } -- cgit v1.2.3