Skip to content

Commit

Permalink
[rv32] Cleanup for merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 committed Jan 27, 2019
1 parent bf6951a commit d1b184e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/common/consts.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import freechips.rocketchip.util.Str
trait BOOMDebugConstants
{
val DEBUG_PRINTF = false // use the Chisel printf functionality
val COMMIT_LOG_PRINTF = true // dump commit state, for comparision against ISA sim
val COMMIT_LOG_PRINTF = false // dump commit state, for comparision against ISA sim
val O3PIPEVIEW_PRINTF = false // dump trace for O3PipeView from gem5
val O3_CYCLE_TIME = (1000)// "cycle" time expected by o3pipeview.py

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/common/parameters.scala
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ trait HasBoomCoreParameters extends freechips.rocketchip.tile.HasCoreParameters
val usingFDivSqrt = boomParams.fpu.isDefined && boomParams.fpu.get.divSqrt

val mulDivParams = boomParams.mulDiv.getOrElse(MulDivParams())
// TODO: Allow this
// TODO: Allow RV32IF
require(!(xLen == 32 && usingFPU), "RV32 does not support fp")

//************************************
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/system/Configs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class BoomConfig extends Config(
new DefaultBoomConfig ++
new WithNBoomCores(1) ++
new WithoutTLMonitors ++
new freechips.rocketchip.system.BaseConfig)
new freechips.rocketchip.system.BaseConfig)

// Main configs. SmallBoomConfig and MediumBoomConfig are best-maintained
// MediumBoomConfig is typically described in documentation
Expand Down

0 comments on commit d1b184e

Please sign in to comment.