3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-29 11:55:52 +00:00

Renamed manual/FILES_* directories

This commit is contained in:
Clifford Wolf 2014-01-28 06:55:47 +01:00
parent 842ca2f011
commit 2cb47355d4
29 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,14 @@
module uut_always02(clock,
reset, count);
input clock, reset;
output [3:0] count;
reg [3:0] count;
always @(posedge clock) begin
count <= count + 1;
if (reset)
count <= 0;
end
endmodule