Increase debug module data capacity

This commit is contained in:
Jerry Zhao
2023-04-17 11:56:12 -07:00
parent 2ec45b4f63
commit 07e19e5bb8
2 changed files with 5 additions and 0 deletions

View File

@@ -87,3 +87,7 @@ class WithExtMemIdBits(n: Int) extends Config((site, here, up) => {
class WithNoPLIC extends Config((site, here, up) => {
case PLICKey => None
})
class WithDebugModuleAbstractDataWords(words: Int = 16) extends Config((site, here, up) => {
case DebugModuleKey => up(DebugModuleKey).map(_.copy(nAbstractDataWords=words))
})