diff options
| author | ducky | 2016-11-17 11:21:59 -0800 |
|---|---|---|
| committer | ducky | 2016-11-21 13:31:12 -0800 |
| commit | b0cc0c93a80aec5bed54cfb11923636c09b7e180 (patch) | |
| tree | 5d3edabd4010cfb0e8dce125f39e89ee904143a0 /src/test/scala/chiselTests/DriverSpec.scala | |
| parent | 9e32a39bda3fba11e6b0990e6ad5e7e17b5d8364 (diff) | |
SInt conversion finished, everything builds again
Diffstat (limited to 'src/test/scala/chiselTests/DriverSpec.scala')
| -rw-r--r-- | src/test/scala/chiselTests/DriverSpec.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/DriverSpec.scala b/src/test/scala/chiselTests/DriverSpec.scala index 4f9619e3..d77dbaf1 100644 --- a/src/test/scala/chiselTests/DriverSpec.scala +++ b/src/test/scala/chiselTests/DriverSpec.scala @@ -8,8 +8,8 @@ import org.scalatest.{Matchers, FreeSpec} class DummyModule extends Module { val io = IO(new Bundle { - val in = UInt(INPUT, 1) - val out = UInt(OUTPUT, 1) + val in = Input(UInt(1.W)) + val out = Output(UInt(1.W)) }) io.out := io.in } |
