Skip to content

Commit

Permalink
fix(simtop): assert trace enable
Browse files Browse the repository at this point in the history
  • Loading branch information
wissygh committed Nov 21, 2024
1 parent 0e3d570 commit 2f19080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/scala/top/SimTop.scala
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class SimTop(implicit p: Parameters) extends Module {
soc.io.cacheable_check := DontCare
soc.io.riscv_rst_vec.foreach(_ := 0x10000000L.U)
l_soc.nmi.foreach(_.foreach(intr => { intr := false.B; dontTouch(intr) }))
soc.io.traceCoreInterface.foreach(_.fromEncoder.enable := false.B)
soc.io.traceCoreInterface.foreach(_.fromEncoder.enable := true.B)
soc.io.traceCoreInterface.foreach(_.fromEncoder.stall := false.B)

// soc.io.rtc_clock is a div100 of soc.io.clock
Expand Down

0 comments on commit 2f19080

Please sign in to comment.