aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/tests/counter/counter.v
diff options
context:
space:
mode:
Diffstat (limited to 'fpga_interchange/examples/tests/counter/counter.v')
-rw-r--r--fpga_interchange/examples/tests/counter/counter.v8
1 files changed, 5 insertions, 3 deletions
diff --git a/fpga_interchange/examples/tests/counter/counter.v b/fpga_interchange/examples/tests/counter/counter.v
index 00f52a20..4b3f343b 100644
--- a/fpga_interchange/examples/tests/counter/counter.v
+++ b/fpga_interchange/examples/tests/counter/counter.v
@@ -1,13 +1,15 @@
module top(input clk, input rst, output [7:4] io_led);
-reg [31:0] counter = 32'b0;
+localparam SIZE = 32;
-assign io_led = counter >> 22;
+reg [SIZE-1:0] counter = SIZE'b0;
+
+assign io_led = {counter[SIZE-1], counter[25:23]};
always @(posedge clk)
begin
if(rst)
- counter <= 32'b0;
+ counter <= SIZE'b0;
else
counter <= counter + 1;
end