diff options
Diffstat (limited to 'tests/liberty/small.v')
-rw-r--r-- | tests/liberty/small.v | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/liberty/small.v b/tests/liberty/small.v new file mode 100644 index 000000000..bd94be4fc --- /dev/null +++ b/tests/liberty/small.v @@ -0,0 +1,16 @@ +/** 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 |