mirror of
https://github.com/annoyatron255/yosys4gal.git
synced 2024-12-22 10:42:24 +00:00
12 lines
126 B
Verilog
12 lines
126 B
Verilog
module test (
|
|
input clk,
|
|
|
|
output reg [6:0] counter
|
|
);
|
|
|
|
always @ (posedge clk) begin
|
|
counter <= counter + 1;
|
|
end
|
|
|
|
endmodule
|