aboutsummaryrefslogtreecommitdiff
path: root/examples/iceblink
diff options
context:
space:
mode:
Diffstat (limited to 'examples/iceblink')
-rw-r--r--examples/iceblink/example.v2
-rw-r--r--examples/iceblink/iceblink.pcf10
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/iceblink/example.v b/examples/iceblink/example.v
index 6bccc1e..4642ef2 100644
--- a/examples/iceblink/example.v
+++ b/examples/iceblink/example.v
@@ -15,7 +15,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
diff --git a/examples/iceblink/iceblink.pcf b/examples/iceblink/iceblink.pcf
index 0d5e6c1..e737772 100644
--- a/examples/iceblink/iceblink.pcf
+++ b/examples/iceblink/iceblink.pcf
@@ -1,5 +1,5 @@
-set_io LED2 59
-set_io LED3 56
-set_io LED4 53
-set_io LED5 51
-set_io clk 13
+set_io LED2 59
+set_io LED3 56
+set_io LED4 53
+set_io LED5 51
+set_io clk 13