mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-28 03:15:50 +00:00
Improved xilinx mojo_counter example
This commit is contained in:
parent
ceb971eab9
commit
4007b41d40
2 changed files with 5 additions and 2 deletions
|
@ -7,7 +7,7 @@ output led_3, led_2, led_1, led_0;
|
|||
reg [31:0] counter;
|
||||
|
||||
always @(posedge clk)
|
||||
counter <= counter + 1;
|
||||
counter <= 32'b_1010_1010_1010_1010_1010_1010_1010_1010; // counter + 1;
|
||||
|
||||
assign {led_7, led_6, led_5, led_4, led_3, led_2, led_1, led_0} = counter >> 24;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue