We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f09024 commit 27520d3Copy full SHA for 27520d3
src/main/scala/sim/NutShellSim.scala
@@ -102,7 +102,7 @@ class NutShellSimTop extends Module {
102
log_level := io.logCtrl.log_level
103
104
assert(log_begin <= log_end)
105
- BoringUtils.addSource((GTimer() >= log_begin) && (GTimer() <= log_end), "DISPLAY_ENABLE")
+ BoringUtils.addSource((GTimer() >= log_begin) && (GTimer() < log_end), "DISPLAY_ENABLE")
106
107
// make BoringUtils not report boring exception when EnableDebug is set to false
108
val dummyWire = WireInit(false.B)
0 commit comments