Sign in
foss-fpga-tools
/
third_party
/
yosys
/
15aa3f460d1aa873108360df1cf2d5f22137946d
/
.
/
tests
/
liberty
/
small.v
blob: bd94be4fc34d466cd4eb63db0fa3594787b0f416 [
file
]
/** small, meaningless design to test loading of liberty files */
module
small
(
input clk
,
output reg
[
7
:
0
]
count
);
initial count
=
0
;
always
@
(
posedge clk
)
begin
count
<=
count
+
1
'b1;
end
endmodule