[firechip] Enable trace by default in BOOM-based targets (#412)

* [firechip] Enable trace by default in BOOM-based targets

* Bump boom for trace enchancements
This commit is contained in:
David Biancolin
2020-01-30 15:26:00 -08:00
committed by GitHub
parent 5d27ac5bbc
commit 59dd6a79ff
3 changed files with 7 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ trait HasTraceIOImp extends LazyModuleImp {
// Enabled to test TracerV trace capture
if (p(PrintTracePort)) {
val traceprint = Wire(UInt(512.W))
traceprint := Cat(traceIO.traces.map(_.asUInt))
traceprint := Cat(traceIO.traces.map(_.reverse.asUInt))
printf("TRACEPORT: %x\n", traceprint)
}
}