aboutsummaryrefslogtreecommitdiffstats
path: root/examples/icezum
diff options
context:
space:
mode:
Diffstat (limited to 'examples/icezum')
-rw-r--r--examples/icezum/example.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/icezum/example.v b/examples/icezum/example.v
index 9bdf587..1274e69 100644
--- a/examples/icezum/example.v
+++ b/examples/icezum/example.v
@@ -16,7 +16,7 @@ module top (
reg [BITS+LOG2DELAY-1:0] counter = 0;
reg [BITS-1:0] outcnt;
- always@(posedge clk) begin
+ always @(posedge clk) begin
counter <= counter + 1;
outcnt <= counter >> LOG2DELAY;
end