aboutsummaryrefslogtreecommitdiffstats
path: root/picosoc/hx8kdemo_tb.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-09-20 20:17:27 +0200
committerClifford Wolf <clifford@clifford.at>2017-09-20 20:17:27 +0200
commit51436b1c5017012fb1d666d8a7ffcb96b0906d73 (patch)
treeb31b03127316677e013ece1c53334ac1079319f7 /picosoc/hx8kdemo_tb.v
parent7639e6ebac26fafbff2c3e2a72e83cf5cd0c3a3e (diff)
downloadpicorv32-51436b1c5017012fb1d666d8a7ffcb96b0906d73.tar.gz
picorv32-51436b1c5017012fb1d666d8a7ffcb96b0906d73.zip
PicoSoC QSPI DDR progress
Diffstat (limited to 'picosoc/hx8kdemo_tb.v')
-rw-r--r--picosoc/hx8kdemo_tb.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/picosoc/hx8kdemo_tb.v b/picosoc/hx8kdemo_tb.v
index 83b1340..1e13cde 100644
--- a/picosoc/hx8kdemo_tb.v
+++ b/picosoc/hx8kdemo_tb.v
@@ -27,7 +27,10 @@ module testbench;
$dumpfile("testbench.vcd");
$dumpvars(0, testbench);
- repeat (200000) @(posedge clk);
+ repeat (6) begin
+ repeat (50000) @(posedge clk);
+ $display("+50000 cycles");
+ end
$finish;
end