aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/blinky_tb.v
diff options
context:
space:
mode:
Diffstat (limited to 'ice40/blinky_tb.v')
-rw-r--r--ice40/blinky_tb.v9
1 files changed, 6 insertions, 3 deletions
diff --git a/ice40/blinky_tb.v b/ice40/blinky_tb.v
index d5c40982..f80b5e64 100644
--- a/ice40/blinky_tb.v
+++ b/ice40/blinky_tb.v
@@ -14,9 +14,12 @@ module blinky_tb;
);
initial begin
- $dumpfile("blinky_tb.vcd");
- $dumpvars(0, blinky_tb);
- repeat (9000000) @(posedge clk);
+ // $dumpfile("blinky_tb.vcd");
+ // $dumpvars(0, blinky_tb);
+ repeat (10) begin
+ repeat (900000) @(posedge clk);
+ $display(led1, led2, led3, led4, led5);
+ end
$finish;
end
endmodule