fix verilator build

This commit is contained in:
Howard Mao
2017-06-22 17:41:48 -07:00
parent 9a9ebea207
commit 119e563ea6
4 changed files with 13 additions and 4 deletions

View File

@@ -3,9 +3,12 @@ package example
import config.{Parameters, Config}
import testchipip.WithSerialAdapter
import coreplex.WithRoccExample
import rocketchip.WithoutTLMonitors
class DefaultExampleConfig extends Config(
new WithSerialAdapter ++ new rocketchip.DefaultConfig)
new WithoutTLMonitors ++
new WithSerialAdapter ++
new rocketchip.DefaultConfig)
class RoccExampleConfig extends Config(
new WithRoccExample ++ new DefaultExampleConfig)