aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/hx8kboard/example.v2
-rw-r--r--examples/icestick/example.v2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/hx8kboard/example.v b/examples/hx8kboard/example.v
index 9fc5a11..accbc2e 100644
--- a/examples/hx8kboard/example.v
+++ b/examples/hx8kboard/example.v
@@ -20,6 +20,6 @@ module top (
counter <= counter + 1;
outcnt <= counter >> LOG2DELAY;
end
-
+
assign {LED0, LED1, LED2, LED3, LED4, LED5, LED6, LED7} = outcnt ^ (outcnt >> 1);
endmodule
diff --git a/examples/icestick/example.v b/examples/icestick/example.v
index cb7cfcd..a934400 100644
--- a/examples/icestick/example.v
+++ b/examples/icestick/example.v
@@ -17,6 +17,6 @@ module top (
counter <= counter + 1;
outcnt <= counter >> LOG2DELAY;
end
-
+
assign {LED1, LED2, LED3, LED4, LED5} = outcnt ^ (outcnt >> 1);
endmodule