aboutsummaryrefslogtreecommitdiffstats
path: root/tests/xsthammer/xl_cells.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-06-26 12:34:06 +0200
committerClifford Wolf <clifford@clifford.at>2013-06-26 12:34:06 +0200
commita5fe2565b72c3e80f981a9694072233876bf7c9a (patch)
tree9b802db838c9ba52dc90ca3a853df68d22981be9 /tests/xsthammer/xl_cells.v
parent101491132fbd617b0a0819045cc7b5d35395706d (diff)
downloadyosys-a5fe2565b72c3e80f981a9694072233876bf7c9a.tar.gz
yosys-a5fe2565b72c3e80f981a9694072233876bf7c9a.tar.bz2
yosys-a5fe2565b72c3e80f981a9694072233876bf7c9a.zip
Added vivado support to xsthammer
Diffstat (limited to 'tests/xsthammer/xl_cells.v')
-rw-r--r--tests/xsthammer/xl_cells.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/xsthammer/xl_cells.v b/tests/xsthammer/xl_cells.v
index 775c84d24..d2badcfff 100644
--- a/tests/xsthammer/xl_cells.v
+++ b/tests/xsthammer/xl_cells.v
@@ -1,4 +1,16 @@
+module IBUF(O, I);
+output O;
+input I;
+assign O = I;
+endmodule
+
+module OBUF(O, I);
+output O;
+input I;
+assign O = I;
+endmodule
+
module GND(G);
output G = 0;
endmodule