fully switch to chisel3

This commit is contained in:
Howard Mao
2017-02-07 17:33:38 -08:00
parent 41f439a2c3
commit 9ed41fc3dc
4 changed files with 21 additions and 21 deletions

View File

@@ -4,13 +4,13 @@ import util.GeneratorApp
import diplomacy.LazyModule
import rocketchip._
import testchipip._
import Chisel._
import chisel3._
import cde.Parameters
class TestHarness(implicit val p: Parameters) extends Module {
val io = new Bundle {
val success = Bool(OUTPUT)
}
val io = IO(new Bundle {
val success = Output(Bool())
})
def buildTop(p: Parameters): ExampleTop = LazyModule(new ExampleTop(p))