1
0

Merge remote-tracking branch 'origin/master' into tl2-tile

This commit is contained in:
Wesley W. Terpstra
2016-11-18 18:19:31 -08:00
3 changed files with 80 additions and 1 deletions

View File

@ -154,3 +154,17 @@ class WithoutTLMonitors extends Config (
case _ => throw new CDEMatchError
}
)
class WithNExtTopInterrupts(nExtInts: Int) extends Config(
(pname, site, here) => pname match {
case NExtTopInterrupts => nExtInts
case _ => throw new CDEMatchError
}
)
class WithNBreakpoints(hwbp: Int) extends Config (
(pname,site,here) => pname match {
case NBreakpoints => hwbp
case _ => throw new CDEMatchError
}
)