Skip to content

Commit

Permalink
Fix Reset bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 committed Aug 5, 2020
1 parent 9e44313 commit f69b293
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generators/firechip/src/main/scala/FireSim.scala
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class WithFireSimRationalTileDomain(multiplier: Int, divisor: Int) extends Confi
data.reset := ResetCatchAndSync(tile_clock, reset.asBool)
} else {
data.clock := uncore_clock
data.clock := reset
data.reset := reset
}
}
}}
Expand Down
2 changes: 1 addition & 1 deletion generators/tracegen/src/main/scala/Tile.scala
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class BoomTraceGenTile private(

val boom_params = p.alterMap(Map(TileKey -> BoomTileParams(
dcache=params.dcache,
core=BoomCoreParams(nPMPs=0, numLdqEntries=32, numStqEntries=32, useVM=false))))
core=BoomCoreParams(nPMPs=0, numLdqEntries=16, numStqEntries=16, useVM=false))))
val dcache = LazyModule(new BoomNonBlockingDCache(staticIdForMetadataUseOnly)(boom_params))


Expand Down

0 comments on commit f69b293

Please sign in to comment.