1
0

tilelink: Monitor should report line numbers of connection that failed (#872)

This commit is contained in:
Wesley W. Terpstra
2017-07-17 21:29:14 -07:00
committed by GitHub
parent ec57994784
commit fc75ada577
2 changed files with 16 additions and 16 deletions

View File

@ -5,6 +5,6 @@ package freechips.rocketchip.diplomacy
import chisel3.internal.sourceinfo.{SourceInfo, SourceLine}
import freechips.rocketchip.config.Parameters
abstract class MonitorBase(implicit sourceInfo: SourceInfo, p: Parameters) extends LazyModule()(p) {
abstract class MonitorBase(implicit val sourceInfo: SourceInfo, p: Parameters) extends LazyModule()(p) {
override val module: LazyModuleImp
}