Skip to content

Commit 27520d3

Browse files
chore: no longer print log in 0th cycle
1 parent 6f09024 commit 27520d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/sim/NutShellSim.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class NutShellSimTop extends Module {
102102
log_level := io.logCtrl.log_level
103103

104104
assert(log_begin <= log_end)
105-
BoringUtils.addSource((GTimer() >= log_begin) && (GTimer() <= log_end), "DISPLAY_ENABLE")
105+
BoringUtils.addSource((GTimer() >= log_begin) && (GTimer() < log_end), "DISPLAY_ENABLE")
106106

107107
// make BoringUtils not report boring exception when EnableDebug is set to false
108108
val dummyWire = WireInit(false.B)

0 commit comments

Comments
 (0)