Skip to content

Commit

Permalink
Disable ROT by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Siudya committed Jun 6, 2024
1 parent 3f242fd commit 80a6c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/top/Configs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class BaseConfig(n: Int, mbist:Boolean = false) extends Config((site, here, up)
case XLen => 64
case DebugOptionsKey => DebugOptions()
case SoCParamsKey => SoCParameters(
hasShareBus = mbist, hasMbist = mbist
hasShareBus = mbist, hasMbist = mbist, hasRot = false
)
case PMParameKey => PMParameters()
case XSTileKey => Seq.tabulate(n){
Expand Down

0 comments on commit 80a6c53

Please sign in to comment.