diff options
author | Joshua Yun <joshua@joshuayun.com> | 2025-05-17 11:04:47 -0500 |
---|---|---|
committer | Joshua Yun <joshua@joshuayun.com> | 2025-05-17 11:04:47 -0500 |
commit | e580017e209a0888c3f5a2063d265de50c66c56b (patch) | |
tree | 28ba8b4784fa33d539571e26f00b0017ca5ab173 /core/tb | |
parent | 86021b3616c24efe38d8869b45d201bf24fe9a07 (diff) | |
download | riscv-processor-e580017e209a0888c3f5a2063d265de50c66c56b.tar.gz |
initial commit
Diffstat (limited to 'core/tb')
-rw-r--r-- | core/tb/core_tb.sv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tb/core_tb.sv b/core/tb/core_tb.sv index 3252a13..5824ed8 100644 --- a/core/tb/core_tb.sv +++ b/core/tb/core_tb.sv @@ -22,7 +22,7 @@ initial begin $dumpfile("dump.fst"); $dumpvars; - // Reset Set up + // Reset Set up rst_l = 1'b0; repeat (5) @(posedge clk); rst_l = 1'b1; |