mirror of
https://github.com/annoyatron255/yosys4gal.git
synced 2025-05-06 14:43:11 +00:00
12 lines
126 B
Coq
12 lines
126 B
Coq
![]() |
module test (
|
||
|
input clk,
|
||
|
|
||
|
output reg [7:0] counter
|
||
|
);
|
||
|
|
||
|
always @ (posedge clk) begin
|
||
|
counter <= counter + 1;
|
||
|
end
|
||
|
|
||
|
endmodule
|